博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vue/npm 错误提示&解决
阅读量:5088 次
发布时间:2019-06-13

本文共 754 字,大约阅读时间需要 2 分钟。

1,下图的报错为没有系统权限

 

解决:

 

P.S. 用管理打开后的命令行默认是window/system32,从system32退回到桌面的路径如下图

 

2, vuex 报错 “unknown mutation type”

 

3,Git报错:index.lock File exists

进去.git目录里把index.lock文件删掉就可以

 

4,[Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.

在webpack中添加如下配置就可以解决:module.export{    ...    resolve:{        alias:{            'vue$':'vue/dist/vue.js'        }    }}---------------------本文来自 吕秀军 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/jj546630576/article/details/79248794?utm_source=copy

 

5,Error:resource busy or locked(npm install / cnpm install  时出现,安装不了依赖)

把package.lock.json文件移除再安装

 

转载于:https://www.cnblogs.com/haqiao/p/9263882.html

你可能感兴趣的文章
【input】 失去焦点时 显示默认值 focus blur ★★★★★
查看>>
Java跟Javac,package与import
查看>>
day-12 python实现简单线性回归和多元线性回归算法
查看>>
Json格式的字符串转换为正常显示的日期格式
查看>>
[转]使用 Razor 进行递归操作
查看>>
[转]Android xxx is not translated in yyy, zzz 的解决方法
查看>>
docker入门
查看>>
Android系统--输入系统(十一)Reader线程_简单处理
查看>>
监督学习模型分类 生成模型vs判别模型 概率模型vs非概率模型 参数模型vs非参数模型...
查看>>
Mobiscroll脚本破解,去除Trial和注册时间限制【转】
查看>>
实验五 Java网络编程及安全
查看>>
32位与64位 兼容编程
查看>>
iframe父子页面通信
查看>>
ambari 大数据安装利器
查看>>
java 上传图片压缩图片
查看>>
magento 自定义订单前缀或订单起始编号
查看>>
ACM_拼接数字
查看>>
计算机基础作业1
查看>>
Ubuntu 深度炼丹环境配置
查看>>
C#中集合ArrayList与Hashtable的使用
查看>>