美文网首页
vue——解决“You may use special comm

vue——解决“You may use special comm

作者: SherrinfordL | 来源:发表于2019-03-18 02:06 被阅读0次

    在build/webpack.base.conf.js文件中,注释或者删除掉:module->rules中有关eslint的规则

    module: {
      rules: [
        //...(config.dev.useEslint ? [createLintingRule()] : []), // 注释或者删除
        {
          test: /\.vue$/,
          loader: 'vue-loader',
          options: vueLoaderConfig
        },
        ...
        }
      ]
    }
    

    然后 nmp run dev 就能正常运行了

    相关文章

      网友评论

          本文标题:vue——解决“You may use special comm

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