如何在 Vue.js 中使用第三方库

in 前端 with 0 comment

参考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()
Comments are closed.