初始化

This commit is contained in:
lichun
2025-12-03 09:30:19 +08:00
commit a02dd8c2f4
215 changed files with 114299 additions and 0 deletions

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

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