Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 718 Bytes

index.md

File metadata and controls

33 lines (27 loc) · 718 Bytes

Mobx

create-react-app 增加修饰器支持

npm install --save-dev @babel/plugin-proposal-decorators

修改./node_modules/babel-preset-react-app/create.js代码

// 144行
isTypeScriptEnabled && [
    require('@babel/plugin-proposal-decorators').default,
    { false },
],
// 修改为
isTypeScriptEnabled && [
    require('@babel/plugin-proposal-decorators').default,
    { legacy: true },
],

参考文档

  1. MobX中文文档
  2. 构建大型 Mobx 应用的几个建议