Files
jczxw-pc/app/pages/expert/downloads/index.vue
T
2026-09-11 12:25:38 +08:00

21 lines
398 B
Vue

<template>
<ModuleEntryListPage :config="pageConfig" />
</template>
<script setup lang="ts">
import ModuleEntryListPage from '@/components/ModuleEntryListPage.vue'
definePageMeta({
layout: 'blank'
})
const pageConfig = {
type: 'expert_download',
title: '专家资料下载',
description: '',
baseRoute: '/expert/downloads',
showImage: false,
sidebarNavKey: 'expert',
}
</script>