riku
2024-05-09 75aeb4e63339b60f9559af984c7d9f87a7cba24a
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 };
});