解决Cannot find module ‘element-ui‘

**报错:Cannot find module ‘element-ui’


**解决办法:
步骤1.
npm install element-ui --save
步骤2.在main.js中
import ElementUI from 'element-ui' import 'element-ui/lib/theme-chalk/index.css' Vue.use(ElementUI);

猜你喜欢

转载自blog.csdn.net/weixin_59519449/article/details/125243677