dva @connect Decorators must be placed *after* the ‘export‘ keyword. Remove the ‘decoratorsBeforeEx


 

cnpm install @babel/plugin-proposal-decorators --save-dev
//package.json 添加

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

你可能感兴趣的:(前端,javascript,开发语言)