vue 中使用lodash

转载自 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

你可能感兴趣的:(vue 中使用lodash)