riku
2024-05-13 d277d770292df0a1266c07f4773d62edd70e6515
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 };
});