riku
2024-05-11 e94ea7f723e616a0566ac5c7f9d77435333d9e92
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 };
});