@tcfs/mp
v0.0.15
Published
## 文档
Downloads
11
Readme
优码小程序框架
文档
http://tcf.oa.com/docs/mini/frame/base.html
mobx
因 mobx 相关库接近 80K,各项目按需要自己引入
{
"mobx-miniprogram": "^4.13.2",
"mobx-miniprogram-bindings": "^1.2.0"
}
应用初始化是注册
import { createStoreBindings } from 'mobx-miniprogram-bindings';
// 注册项目配置
appConfigRegister({
mobx:{
createStoreBindings
}
});
// 则下面装饰器就可以正常使用mobx
@wxPage({
storeBindingOptions:{ }
})
@wxComponent({
storeBindingOptions:{ }
})
https://developers.weixin.qq.com/miniprogram/dev/extended/utils/mobx.html