yangfeng
2023-11-30 6050b02cd808a9af2070d61e3b278e3407b845ca
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
  }
})