20 lines
561 B
Vue
20 lines
561 B
Vue
<template>
|
|
<SectionStub
|
|
title="智库动态"
|
|
description="发布智库党建、交流合作与平台建设动态,展示协同开放成果。"
|
|
:links="links"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import SectionStub from '@/components/SectionStub.vue'
|
|
import { usePageSeo } from '@/composables/usePageSeo'
|
|
usePageSeo({ title: '智库动态', description: '智库动态栏目入口。', path: '/thinktank' })
|
|
|
|
const links = [
|
|
{ label: '智库党建', to: '/thinktank/party' },
|
|
{ label: '交流合作', to: '/thinktank/coop' }
|
|
]
|
|
</script>
|
|
|