配置:"babel-core": "^6.17.0",{ "plugins": [ "transform-class-properties", "transform-es2015-block-scoping",
["transform-es2015-classes", {"loose": true}], "transform-proto-to-assign",
"transform-decorators-legacy", "transform-es2015-modules-commonjs"
], "presets": [ "react", "es2015", "stage-0"
]
}报错:Method has decorators, put the decorator plugin before the classes one.
1 回答

慕莱坞森
TA贡献1810条经验 获得超4个赞
参考:babel-plugin-transform-decorators-legacy
NOTE: Order of Plugins Matters!
If you are including your plugins manually and using transform-class-properties, make sure that transform-decorators-legacy comes before transform-class-properties.
/// WRONG
"plugins": [
"transform-class-properties",
"transform-decorators-legacy"
]
// RIGHT
"plugins": [
"transform-decorators-legacy",
"transform-class-properties"
]
添加回答
举报
0/150
提交
取消