이.$store.dispatch().then()은 Vuex에서 작동하지 않습니다. 프로젝트에서 VUEX를 사용하고 있는데 상태가 변경된 후 몇 가지 작업을 수행해야 합니다.다음은 스토어 모듈입니다.js: const state = { activeEvent: null }; const mutations = { SET_ACTIVE_EVENT(state, activeEvent) { state.activeEvent = activeEvent; } }; const actions = { setActiveEvent({ commit }, activeEvent) { commit("SET_ACTIVE_EVENT", activeEvent); } }; export default { state, mutations, actions }..