import _ from 'lodash' 报错如下:
lodash Uncaught TypeError:Cannot read property 'prototype' of undefined
解决方法:
引入具体的方法名
import _times from 'lodash/times'
import _flatten from 'lodash/flatten'
......
import _ from 'lodash' 报错如下:
lodash Uncaught TypeError:Cannot read property 'prototype' of undefined
解决方法:
引入具体的方法名
import _times from 'lodash/times'
import _flatten from 'lodash/flatten'
......