Vuex 변환은 동기적으로 동작하지 않지만 약속을 반환하지 않음 내 vuex 돌연변이가 동시에 작동하지 않는 것 같아.다음과 같습니다. mutations: { computeStatusData(state, status) { if (status.active !== true) { return } const started = new Date(status.startedAt); started.setHours(0, 0, 0, 0); const today = new Date(); status.currentDay = Math.floor((today.getTime() - started.getTime()) / (1000 * 60 * 60 * 24)); status.currentWeek = Math.floor(status.c..