// 地图相关 const useMapStore = defineStore( // 唯一ID 'map', { state: () => ({ amapSecurityCode: '182a2c5889f7fe6d90546d9b8f4781ad', // 安全密钥 amapKey: 'e1733551f35b56f6d8e9c0a9d4c2523b', // 高德地图key detailList: [] as any[], // 轨迹信息 }), getters: {}, actions: { setDetailList(data: any[]) { this.detailList = data }, }, }, ) export default useMapStore