22 lines
743 B
Vue
22 lines
743 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: '/experts' })
|
|
|
|
const links = [
|
|
{ label: '智库专家库', to: '/experts/db', desc: '分类检索与专家匹配' },
|
|
{ label: '专家风采', to: '/experts/style', desc: '访谈、观点集锦与成果展示' },
|
|
{ label: '专家申请', to: '/experts/apply' },
|
|
{ label: '资料下载', to: '/downloads' }
|
|
]
|
|
</script>
|
|
|