This commit is contained in:
2025-10-24 09:34:42 +08:00
commit c0e46d1ae7
282 changed files with 33820 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<template>
<span>{{ dictLabel(dictType, value) }}</span>
</template>
<script setup>
import useDictStore from '../../stores/useDictStore';
const { dictType, value } = defineProps(['value', 'dictType']);
const { complete, dictLabel } = useDictStore();
</script>
<style></style>