yangfeng
2023-10-17 00f4f7c4a9e43b101a45d45af91321af7886d6e5
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
  }
})