11 lines
412 B
Vue
11 lines
412 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: '/reference/results' })
|
|
</script>
|
|
|