Azure
Results
2
issues of
Azure
参考,https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/page.html中使用 Component 构造器构造页面 这里如果使用Component构造器,构造页面时,会抛异常
`import { configure, observable, action } from 'mobx-miniprogram'; // 不允许在动作外部修改状态 configure({ enforceActions: 'observed' }); export const store = observable({ /** 数据字段 */ numA: 1, numB: 2, /** 计算属性 */ get...