21 lines
398 B
Vue
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>
|