Files
admin-vben5/apps/web-antd/src/views/system/dict/index.vue
2024-10-18 15:43:57 +08:00

17 lines
404 B
Vue

<script setup lang="ts">
import { Page } from '@vben/common-ui';
import DictDataPanel from './data/index.vue';
import DictTypePanel from './type/index.vue';
</script>
<template>
<Page
:auto-content-height="true"
content-class="flex flex-col lg:flex-row gap-4"
>
<DictTypePanel class="flex-1 overflow-hidden" />
<DictDataPanel class="flex-1 overflow-hidden" />
</Page>
</template>