import { ref } from 'vue'; import { defineStore } from 'pinia'; // 走航任务 export const useMissionStore = defineStore('mission', () => { const missionList = ref([]); return { missionList }; });