21 lines
602 B
Vue
21 lines
602 B
Vue
<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>
|
|
|