2b780a12c2
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.
11 lines
375 B
Vue
11 lines
375 B
Vue
<script setup lang="ts">
|
|
import PageMasterDetailBMaintenance from '@/components/pages/PageMasterDetailBMaintenance.vue'
|
|
import { useMasterDetailBMaintenancePage } from '@/composables/page-drivers/useMasterDetailBMaintenancePage'
|
|
|
|
const page = useMasterDetailBMaintenancePage()
|
|
</script>
|
|
|
|
<template>
|
|
<PageMasterDetailBMaintenance :page="page.pageModel.value" />
|
|
</template>
|