vue中引入lodash提示Cannot read property 'remove' of undefined
使用的Full build版本
import _ from '../lodash.min'
//methods内
this.nowIndexes = _.remove(this.nowIndexes, (idx) => {
return idx !== index
})
提示Cannot read property 'remove' of undefined
map也是
let nowObjArray = _.map(this.nowIndexes, (idx) => {
return this.selections[idx]
})
console.log(_.remove)提示一样
引入的地址没有问题,不知为何没法用
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试 require
那你看下 你引入的
_
是啥,既然都是ES6了,为啥不是import _ from 'lodash'
感觉是路径问题 如果lodash是装在node_module里的话,直接 from 'lodash'