react 项目支持 装饰器写法 Support for the experimental syntax 'decorators-legacy' isn't currently enabled

react 项目支持 装饰器写法 Support for the experimental syntax 'decorators-legacy' isn't currently enabled_第1张图片

npm install @babel/plugin-proposal-decorators

安装后再package.json里面加一句话(babel里面plugins那句):

  "babel": {
    "plugins": [
      [
        "@babel/plugin-proposal-decorators",
        {
          "legacy": true
        }
      ]
    ],
    "presets": [
      "react-app"
    ]
  },

你可能感兴趣的:(React系列)