feat: dict

This commit is contained in:
dap
2024-09-14 15:18:48 +08:00
parent 4ded7c8ecd
commit 3857dfcee5
5 changed files with 160 additions and 4 deletions

View File

@@ -1,9 +1,16 @@
<script setup lang="ts">
import CommonSkeleton from '#/views/common';
import { Page } from '@vben/common-ui';
import { Card } from 'ant-design-vue';
import DictTypePanel from './type/index.vue';
</script>
<template>
<div>
<CommonSkeleton />
</div>
<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>