11 lines
399 B
Vue
11 lines
399 B
Vue
<template>
|
|
<SectionStub title="机构人员" description="展示人员队伍与研究方向,支持按领域查看与对接。" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import SectionStub from '@/components/SectionStub.vue'
|
|
import { usePageSeo } from '@/composables/usePageSeo'
|
|
usePageSeo({ title: '机构人员', description: '关于我们 - 机构人员。', path: '/about/staff' })
|
|
</script>
|
|
|