mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
feat:整合字典管理
This commit is contained in:
18
src/views/system/dict/index.vue
Normal file
18
src/views/system/dict/index.vue
Normal 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>
|
Reference in New Issue
Block a user