const { observable, action, computed, autorun } = mobx; class Store { @observable list = [] @computed get total() { return this.list.length; }
確定! 回上一頁