-
Notifications
You must be signed in to change notification settings - Fork 0
问题总结
xingdongyu1994 edited this page May 22, 2019
·
1 revision
Modal组件开发
问题1:es6 Modal组件不能使用静态defaultProps属性
es6 class组件只允许静态的方法 不允许静态属性 要使用静态属性需要在组件外部使用
Modal.defaultProps = {} 不过这种方式看着不雅观
为了雅观也可以将babel设置es7转换方式
// Install babel
npm install babel-core babel-loader --save-dev
// If you want to use experimental ES7 features
npm install babel-preset-stage-0 --save-dev
.babelrc文件
{
"presets": ["es2015", "stage-0"],
"plugins": ["transform-runtime"]
}