TBListStore.js
285 Bytes
/**
* Created by yzdd on 2018/4/7.
*/
import {observable} from 'mobx'
export class TBListStore {
@observable
list = [];
@observable
year;
@observable
month;
constructor() {
this.year = new Date().getFullYear();
this.month = new Date().getMonth() + 1;
}
}