songshankun
2023-09-28 60a8f558b3d144cf3ff5e903de0f384c079268c3
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
  }
})