美文网首页
vue 常见错误总结

vue 常见错误总结

作者: 付小影子 | 来源:发表于2021-03-11 17:37 被阅读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.png
    1.win+s 搜索powershell 以管理身份运行
    2.使用set-ExecutionPolicy RemoteSigned命令将计算机上的执行策略更改为 RemoteSigned,输入Y确定

    相关文章

      网友评论

          本文标题:vue 常见错误总结

          本文链接:https://www.haomeiwen.com/subject/qhxsnktx.html