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