Files
skt-vuetify-templates/src/views/maint/MasterDetailC.vue
T
skytek_xinliang 2b780a12c2 docs: document template naming and maintenance refactor
Update agent and LLM guidance to reference the architecture strategy and
add a template naming rule that keeps reusable abstractions domain-neutral.

Mark maintenance Phase 3 as complete and document the page driver/page
component refactors for EditableGrid and MasterDetail variants.docs: document template naming and maintenance refactor

Update agent and LLM guidance to reference the architecture strategy and
add a template naming rule that keeps reusable abstractions domain-neutral.

Mark maintenance Phase 3 as complete and document the page driver/page
component refactors for EditableGrid and MasterDetail variants.
2026-05-19 14:35:28 +08:00

11 lines
375 B
Vue

<script setup lang="ts">
import PageMasterDetailCMaintenance from '@/components/pages/PageMasterDetailCMaintenance.vue'
import { useMasterDetailCMaintenancePage } from '@/composables/page-drivers/useMasterDetailCMaintenancePage'
const page = useMasterDetailCMaintenancePage()
</script>
<template>
<PageMasterDetailCMaintenance :page="page.pageModel.value" />
</template>