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

23 lines
467 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';
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-10-05 22:56:44 +08:00
<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" />
2024-09-14 15:18:48 +08:00
</Page>
2024-08-07 08:57:56 +08:00
</template>
2024-10-05 22:56:44 +08:00
<style scoped>
/**
TODO: ugly code
*/
:deep(.p-4) {
padding: 6px;
}
</style>