riku
2024-05-10 f5624d6a7ad32ee475e00edbad26bc98ea4629e1
1
2
3
4
5
6
7
8
9
import { ref } from 'vue';
import { defineStore } from 'pinia';
 
// 走航任务
export const useMissionStore = defineStore('mission', () => {
  const missionList = ref([]);
 
  return { missionList };
});