fix:修复bug

This commit is contained in:
2025-10-30 15:41:25 +08:00
parent c5277af28f
commit c77e3fa94d
10 changed files with 98 additions and 68 deletions
+4 -4
View File
@@ -80,10 +80,10 @@
</template>
<script setup>
import { computed, getCurrentInstance } from 'vue';
const instance = getCurrentInstance()
const $t = instance?.proxy?.$t || ((key) => key)
import { computed } from 'vue';
import { useI18n } from '@/utils/i18n.js'
const { t: $t } = useI18n()
const props = defineProps({
order: { type: Object, required: true },