Files
location_point/store/index.js
2026-02-23 16:31:39 +08:00

13 lines
205 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 页面路径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
}
})