报错信息: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下,再运行下就好了

Logo

前往低代码交流专区

更多推荐