11 lines
398 B
Vue
11 lines
398 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/style' })
|
|
</script>
|
|
|