vue中用装饰器报错:Parsing error: Decorators cannot be used to decorate object literal properties
报错信息:error: Parsing error: Decorators cannot be used to decorate object literal properties解决办法:在.eslintrc.js文件加入legacyDecorators: true就可以支持装饰器的写法了parserOptions: {// 解析器parser: 'babel-eslint',ecmaFeatu
·
报错信息:error: Parsing error: Decorators cannot be used to decorate object literal properties
解决办法:
在.eslintrc.js文件加入legacyDecorators: true
就可以支持装饰器的写法了
parserOptions: {
// 解析器
parser: 'babel-eslint',
ecmaFeatures:{
// 支持装饰器
legacyDecorators: true
}
},
修改完文件如果还是报错,就在项目目录下npm install
下,再运行下就好了
更多推荐
已为社区贡献7条内容
所有评论(0)