Closed zhuchaoming closed 7 years ago
你好!
@observer
是装饰器语法,需要你安装 babel 插件 babel-plugin-transform-decorators-legacy ,并在你的 .babelrc 文件下作如下配置
{
"plugins": [
"transform-decorators-legacy"
]
}
可以参见示例 demo
你也可以不使用装饰器,将 observer
做为函数使用
class Demo extends Component {
render () {
return <h1 onClick={store.increase}>{store.count}</h1>;
}
}
export default observer(Demo)
npm 安装 react-vue,但最高版本是0.0.3: npm install --save react-vue
运行报错:
error: bundling: SyntaxError: E:/develop/code/react-native/cpd/src/test1.js: Unexpected token (17:0) 15 | }); 16 |