Files
2026-09-11 12:25:38 +08:00

20 lines
410 B
Vue

<template>
<ModuleEntryListPage :config="pageConfig" />
</template>
<script setup lang="ts">
import ModuleEntryListPage from '@/components/ModuleEntryListPage.vue'
definePageMeta({
layout: 'blank'
})
const pageConfig = {
type: 'support_unit',
title: '支持单位',
description: '展示广西决策咨询网支持单位相关信息',
baseRoute: '/support-units',
showImage: false,
}
</script>