Files
admin-vben5/apps/web-antd/src/views/system/dict/index.vue

17 lines
404 B
Vue
Raw Normal View History

2024-08-07 08:57:56 +08:00
<script setup lang="ts">
2024-09-14 15:18:48 +08:00
import { Page } from '@vben/common-ui';
2024-09-23 15:04:23 +08:00
import DictDataPanel from './data/index.vue';
2024-09-14 15:18:48 +08:00
import DictTypePanel from './type/index.vue';
2024-08-07 08:57:56 +08:00
</script>
<template>
2024-10-18 15:43:57 +08:00
<Page
:auto-content-height="true"
content-class="flex flex-col lg:flex-row gap-4"
>
2024-10-05 22:56:44 +08:00
<DictTypePanel class="flex-1 overflow-hidden" />
<DictDataPanel class="flex-1 overflow-hidden" />
2024-09-14 15:18:48 +08:00
</Page>
2024-08-07 08:57:56 +08:00
</template>