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