vue 中使用lodash

weixin_33749242發表於2017-07-13

轉載自 https://stackoverflow.com/questions/37694243/using-lodash-in-all-of-vue-component-template

1 第一種方法

window._ = require('lodash');
不支援服務端渲染,服務端沒有window

2 第二種方法

import lodash from 'lodash'
Object.defineProperty(Vue.prototype, '$lodash', { value: lodash });
或者
Vue.prototype.$lodash = lodash

相關文章