vue 报错http://eslint.org/docs/rules/xxxxx
vue 对语法的要求过于严格所以编译的时候报下面这个错误
解决办法:
bulid文件夹 -> webpack.base.conf.js 找到下面的代码:
module: { rules: [
//...(config.dev.useEslint ? [createLintingRule()] : []), //注释掉这个
{
test: /\.vue$/,
loader: 'vue-loader',
options: vueLoaderConfig
},
以上是 vue 报错http://eslint.org/docs/rules/xxxxx 的全部内容, 来源链接: utcz.com/z/380180.html