admin-vben5/apps/web-antd/src/views/system/dict/index.vue
2024-09-14 15:18:48 +08:00

17 lines
354 B
Vue

<script setup lang="ts">
import { Page } from '@vben/common-ui';
import { Card } from 'ant-design-vue';
import DictTypePanel from './type/index.vue';
</script>
<template>
<Page content-class="flex flex-col gap-[16px] lg:flex-row">
<Card class="w-full">
<DictTypePanel />
</Card>
<Card class="w-full">b</Card>
</Page>
</template>