export default { namespaced: true, state: () => ({ bdmap: null }), mutations: { setMap(state, map) { state.bdmap = map; } }, actions: { } };