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

20 lines
428 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';
import { Card } from 'ant-design-vue';
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-09-14 15:18:48 +08:00
<Page content-class="flex flex-col gap-[16px] lg:flex-row">
<Card class="w-full">
<DictTypePanel />
</Card>
2024-09-23 15:04:23 +08:00
<Card class="w-full">
<DictDataPanel />
</Card>
2024-09-14 15:18:48 +08:00
</Page>
2024-08-07 08:57:56 +08:00
</template>