store.js 258 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6
import { createStore } from 'vuex'
import { useRoute, useRouter } from "vue-router";
import router from '@/router.js'

export default createStore({
  state: {
wuhao's avatar
wuhao committed
7
    lang:"cn"
wuhao's avatar
wuhao committed
8 9 10 11 12 13 14 15 16 17 18
  },
  mutations: {
    
  },
  actions: {
  },
  getters: {
  },
  modules: {
  }
})