feat:整合字典管理

This commit is contained in:
ANHE
2025-03-23 11:00:34 +08:00
parent 3fc4bec81a
commit 7f781112a9
24 changed files with 1077 additions and 17 deletions

View File

@ -0,0 +1,18 @@
<script setup lang="ts">
import { onUnmounted } from 'vue';
import DictTypeList from './type/index.vue';
import DictDataList from './data/index.vue';
import { emitter } from './mitt';
onUnmounted(() => emitter.off('rowClick'));
</script>
<template>
<div class="h-full flex gap-16px">
<DictTypeList class="w-1/2" />
<DictDataList class="w-1/2" />
</div>
</template>
<style scoped></style>