11 lines
406 B
Vue
11 lines
406 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: '/policy/hotspots' })
|
|
</script>
|
|
|