This commit is contained in:
2023-12-20 18:30:11 +08:00
commit 29fe82a05b
56 changed files with 23021 additions and 0 deletions

17
src/store/index.js Normal file
View File

@@ -0,0 +1,17 @@
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
},
getters: {
},
mutations: {
},
actions: {
},
modules: {
}
})