exampleStore.js 379 Bytes
class Store {
    data = {
        locationName: '',
        participatorUserId: [], // 参会人的userId
        roomId: '',
        startTime: '',
        endTime: '',
        originUsers: [],
        originUsersId: [],
        originalData: null,
        indexNeedUpdate: false,
        tabBarIndex: '0',
        locationSchedule: () => { }
    }
}
export default new Store()