Handy_Cao 1 년 전
부모
커밋
3c9ad88960
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/packages/mobile/components/base/select/index.vue

+ 2 - 1
src/packages/mobile/components/base/select/index.vue

@@ -18,6 +18,7 @@
 <script lang="ts" setup>
 import { shallowRef, computed, PropType, watch } from 'vue'
 import { Popup, Picker, PickerConfirmEventParams, FieldInstance } from 'vant'
+import { i18n } from '@/stores'
 
 const props = defineProps({
     modelValue: {
@@ -37,7 +38,7 @@ const props = defineProps({
     },
     placeholder: {
         type: String,
-        default: '请选择'
+        default: i18n.global.t('common.choice')
     },
 })