import storage from '@/utils/storage' const app = { state: { // 当前终端平台 platform: '', plattype: '', verifymsg: '验证身份中...', }, mutations: { SET_PLATFORM: (state, value) => { state.platform = value }, SET_PLATTYPE: (state, value) => { state.plattype = value }, SET_VERIFYMSG: (state, value) => { state.verifymsg = value } }, actions: { } } export default app