export const state = { licenseNo: null, stageIndex: null, }; export const mutations = { activelicenseNo(state, data) { state.licenseNo = data; }, setOrderStage(state, data) { state.stageIndex = data; }, }; export const actions = { };