first commit

This commit is contained in:
2026-02-23 16:31:39 +08:00
commit 8dcee4fadd
269 changed files with 45231 additions and 0 deletions

12
store/index.js Normal file
View File

@@ -0,0 +1,12 @@
// 页面路径store/index.js
import Vue from 'vue'
import Vuex from 'vuex'
import equip from '@/store/modules/equip'
Vue.use(Vuex)
export default new Vuex.Store({
modules:{
equip
}
})