React Native 使用mobx记录

2017-11-08  本文已影响0人  渐行渐远的术士

安装组件
npm i mobx mobx-react --save
我们也要安装一些 babel 插件,以支持 ES7 的 decorator 特性:
npm i babel-plugin-transform-decorators-legacy babel-preset-react-native-stage-0 --save-dev
现在,创建一个 .babelrc 文件配置 babel 插件:
{
'presets': ['react-native'],
'plugins': ['transform-decorators-legacy']
}

上一篇 下一篇

猜你喜欢

热点阅读