import { getSiteAddress } from '@/api/home/index-data'; export const stationStore = defineStore('station', () => { const stationData = ref({}); const onstation = async () => { const res = await getSiteAddress({}); stationData.value = res.data; return res.data; }; return { stationData, onstation }; });