cuiqian2004
2025-03-20 d8872903e30f0a53abefcd279ae03258341e931f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export default {
  state: {
    appInfo:"Bullllllllll"
  },
  mutations: {
    setAppInfo(state, value) {
      state.appInfo= value;
    }
  },
  actions: {
    setAppInfoAction({ commit }, value) {
      commit("setAppInfo", value);
    },
  },
  getters:{}
};