import {setStore, getStore} from '@/util/store' import user from "@/store/modules/user"; const flow = { state: { methodBtn: false, }, mutations: { setMethodBtn(state, value) { state.methodBtn = value; } }, actions: { // 更新保存 取消按钮 updateMethodBtn({commit}, value) { commit('setMethodBtn', value); } } } export default flow