Files
ruoyi-plus-vben5/apps/web-antd/src/views/system/dict/index.vue
2024-10-05 22:56:44 +08:00

23 lines
467 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">
<DictTypePanel class="flex-1 overflow-hidden" />
<DictDataPanel class="flex-1 overflow-hidden" />
</Page>
</template>
<style scoped>
/**
TODO: ugly code
*/
:deep(.p-4) {
padding: 6px;
}
</style>