haoxuan
2023-12-22 5b796da18f7f8948640a3bcdc10478f342293fc0
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
  }
})