14 lines
435 B
Vue
14 lines
435 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: '/suggest' })
|
|
</script>
|
|
|