Vue:these dependencies were not found

问题描述
用配置的vue一路默认创建项目,想用element组件库,按照element的教程,用npm安装了[email protected],在我的组件文件里写入了import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css';
结果报错:
Vue:these dependencies were not found_第1张图片
解决方案
检查你真的是否有安装成功该package,用npm ls element-ui
Vue:these dependencies were not found_第2张图片
如果你没有安装成功,就会显示empty,那么就进入你项目目录下,有package.json的同目录下,再运行一次npm i element-ui -S,检查是否有了该package,有的话,应该是可以正常运行了

版本和工具

VScode
[email protected] 局部安装
[email protected] 局部安装

你可能感兴趣的:(前端学习)