docs: simplify page architecture and component guidance
Update the src documentation to emphasize building pages from route views, composables, sections, and items instead of a dedicated pages layer. Clarify the recommended data flow and new feature workflow so template users start from views and only introduce page-driver composables when coordination logic becomes complex.docs: simplify page architecture and component guidance Update the src documentation to emphasize building pages from route views, composables, sections, and items instead of a dedicated pages layer. Clarify the recommended data flow and new feature workflow so template users start from views and only introduce page-driver composables when coordination logic becomes complex.
This commit is contained in:
@@ -1,13 +1,11 @@
|
||||
<script setup lang="ts">
|
||||
import { computed } from 'vue'
|
||||
import PageSettings from '@/components/pages/PageSettings.vue'
|
||||
import type { SettingsPageModel } from '@/components/pages/PageSettings.vue'
|
||||
|
||||
const pageModel = computed<SettingsPageModel>(() => ({
|
||||
const pageModel = computed(() => ({
|
||||
title: '設定頁面',
|
||||
}))
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<PageSettings :page="pageModel" />
|
||||
<div>{{ pageModel.title }}</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user