11 lines
425 B
Vue
11 lines
425 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: '/experts/db' })
|
|
</script>
|
|
|