yangfeng
2023-11-29 f2b7de3623f3e439c27fd0363d73a6d74a9b4aaf
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
  }
})