Files
lz_web_qwgl/src/store/modules/bdmap.js

15 lines
174 B
JavaScript
Raw Normal View History

2025-06-08 22:23:25 +08:00
export default {
namespaced: true,
state: () => ({
bdmap: null
}),
mutations: {
setMap(state, map) {
state.bdmap = map;
}
},
actions: {
}
};