本文主要是介绍This is probably not a problem with npm.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
项目场景:
新创建的vue3项目,根据elementplus官网安装步骤进行按需导入安装,运行项目报错
This is probably not a problem with npm.There is likely additional logging output above.
原因分析:
是elementplus安装版本和自动加载方法的版本不适应的造成的。
具体问题:
具体报错信息: Cannot find module ‘node:module‘
解决方案:
卸载已安装的elementplus和自动导入包的插件。
安装指定版本的elementplus和插件
npm install element-plus@2.1.11 --save
npm install -D unplugin-vue-components@0.19.3 unplugin-auto-import@0.7.1
这篇关于This is probably not a problem with npm.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!