riku
2024-06-18 759d2a289ecf8e5d589a9b8b8cdac3826f03718e
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 };
});