export const state = { typeIndex: 0, stageIndex: null, }; export const mutations = { setOrderType(state, data) { state.typeIndex = data; }, setOrderStage(state, data) { state.stageIndex = data; } }; export const actions = { };