vue 常见错误总结
2021-03-11 本文已影响0人
付小影子
1.vue报错Cannot read property '_wrapper' of undefined
解决:实际错误是 @click="..."
其中的方法 或者其他监听的方法 没有在 methods
中定义。找到没有定义的方法,定义或者删除即可
2.无法加载文件 C:******\lessc.ps1,因为在此系统上禁止运行脚本
lessc : 无法加载文件 C:\Users\user\AppData\Roaming\npm\lessc.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?Lin
kID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1
+ lessc style.less style.css
+ ~~~~~
+ CategoryInfo : SecurityError: (:) [],PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
解决方法
20210311141422.png1.win+s 搜索powershell 以管理身份运行
2.使用set-ExecutionPolicy RemoteSigned命令将计算机上的执行策略更改为 RemoteSigned,输入Y确定