认证0级讲师
你看看有没有 .babelrc 这个文件,是不是你把这个文件给忘了。
另外 .babelrc 文件中要有react插件。
先npm install babel-plugin-import babel-plugin-react-transform --save-p
npm install babel-plugin-import babel-plugin-react-transform --save-p
然后 .babelrc 中至少要有这些:("stage-0"可选)
{ "presets": ["react", "es2015", "stage-0"] //... 其他东西 }
其实你也可以多装一些,比如在package.json中的devDependencies加上这些
"babel-core": "^6.24.0", "babel-loader": "^6.4.1", "babel-plugin-import": "^1.1.1", "babel-plugin-react-transform": "^2.0.0", "babel-plugin-transform-decorators-legacy": "^1.3.4", "babel-plugin-transform-runtime": "^6.12.0", "babel-preset-es2015": "^6.14.0", "babel-preset-react": "^6.22.0", "babel-preset-stage-0": "^6.5.0", "babel-register": "^6.22.0", "babel-runtime": "^6.11.6",
再npm install肯定能解决问题
你看看有没有 .babelrc 这个文件,是不是你把这个文件给忘了。
另外 .babelrc 文件中要有react插件。
先
npm install babel-plugin-import babel-plugin-react-transform --save-p
然后 .babelrc 中至少要有这些:("stage-0"可选)
其实你也可以多装一些,比如在package.json中的devDependencies加上这些
再npm install肯定能解决问题