美文网首页
Vue依赖编译问题

Vue依赖编译问题

作者: 会飞的笨企鹅 | 来源:发表于2021-03-23 22:50 被阅读0次

    1. TypeError: this.getOptions is not a function  at Object.lessLoader 在vue项目中less报错问题解决

    解决办法:less版本问题,卸载重新安装指定版本号

    npm install less@3.9.0 -s

    npm install less-loader@5.0.0 -s


    2. 使用严格模式eslint时,报错Missing space before function parentheses的问题

    错误提示

    使用eslint时,严格模式下,报错Missing space before function parentheses的问题,意思是在方法名和刮号之间需要有一格空格。

    解决办法: 在代码目录中,打开.eslint文件,并在rules中添加如下一行代码即可:

    "space-before-function-paren": 0

    参考博文: https://www.jianshu.com/p/2f5cded8a2d3

    相关文章

      网友评论

          本文标题:Vue依赖编译问题

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