This commit is contained in:
史典卓
2025-03-28 15:19:42 +08:00
parent ad4eb162a5
commit 0216f6053a
396 changed files with 18278 additions and 9899 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>