import { computed } from 'vue' import type { MaintenancePageModel } from '@/models/page' import { useStudentStore } from '@/stores/students' export function useMasterDetailCMaintenancePage() { const studentStore = useStudentStore() const pageModel = computed(() => ({ type: 'maintenance', title: '主從資料維護示範C', records: studentStore.students, loading: false, error: null, })) return { pageModel, } }