Files
skt-vuetify-templates/src/views/Settings.vue
T
skytek_xinliang 7b99087cbb 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.
2026-05-27 11:50:40 +08:00

12 lines
191 B
Vue

<script setup lang="ts">
import { computed } from 'vue'
const pageModel = computed(() => ({
title: '設定頁面',
}))
</script>
<template>
<div>{{ pageModel.title }}</div>
</template>