17 lines
404 B
Vue
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>
|