const createStore = () => { return new Vuex.Store({ state: { count: 1 }, mutations: { increment (state) { state.count++ } } }) }.
確定! 回上一頁