feat: 更新网站页面和组件,新增多个页面(关于、专家、会员、政策等)
This commit is contained in:
20
app/pages/about/index.vue
Normal file
20
app/pages/about/index.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<template>
|
||||
<SectionStub
|
||||
title="关于我们"
|
||||
description="介绍机构定位、组织架构与人员队伍建设,展示平台治理与服务体系。"
|
||||
:links="links"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import SectionStub from '@/components/SectionStub.vue'
|
||||
import { usePageSeo } from '@/composables/usePageSeo'
|
||||
usePageSeo({ title: '关于我们', description: '关于我们栏目入口。', path: '/about' })
|
||||
|
||||
const links = [
|
||||
{ label: '组织机构', to: '/about/org' },
|
||||
{ label: '机构人员', to: '/about/staff' },
|
||||
{ label: '联系我们', to: '/contact' }
|
||||
]
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user