suerprisePlus
2024-06-21 fde8e3bedaf5f883f38c3a0ec33d3c6a8748d1c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Vue from "vue";
import Vuex from "vuex";
 
Vue.use(Vuex);
 
export default new Vuex.Store({
  state: {
    setMenuFlag: false,
    setMsgData: null,
    setScreenFlag: true,
    erroInfoMessage: null,
    token: null
  },
  mutations: {},
  actions: {},
  modules: {}
});