songshankun
2023-10-16 9b627acc1e44a8e30ac6882a892bac8d99e938eb
1
2
3
4
5
6
7
8
9
10
import Vue from "vue"
import Vuex from "vuex"
import getClientName from "./modules/getClientName"
 
Vue.use(Vuex)
export default new Vuex.Store({
  modules: {
    getClientName
  }
})