参考https://github.com/dwqs/blog/issues/51
//入口文件
//1.挂载到 window 对象上
window._ = require('lodash');
//2.挂载到 Vue 实例对象
import moment from 'moment';
Object.defineProperty(Vue.prototype, '$moment', { value: moment });
//通过 descriptor 创建的属性默认是只读的,以及设置对象属性的一些底层(low-level)细节
Vue.prototype.$moment = moment;
//3.$
//使用$来区分内部属性和方法
//4.插件 Vue.use()
赞助一杯咖啡☕️
本文由 widdy 创作,采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
最后编辑时间为: Nov 29, 2018 at 04:53 pm