feat: 字典

This commit is contained in:
dap
2024-10-05 22:56:44 +08:00
parent fdd1d19c8e
commit d7d8784bb4
7 changed files with 441 additions and 93 deletions

View File

@@ -6,8 +6,17 @@ import DictTypePanel from './type/index.vue';
</script>
<template>
<Page content-class="flex flex-col gap-[16px] lg:flex-row">
<DictTypePanel class="flex-1" />
<DictDataPanel class="flex-1" />
<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>