dcloudio / uni-ui

基于uni-app的、全端兼容的、高性能UI框架
https://uniapp.dcloud.io/component/uniui/uni-ui.html
Apache License 2.0
1.88k stars 667 forks source link

uni-data-picker 国际化问题 #934

Open BenXi630 opened 2 months ago

BenXi630 commented 2 months ago

这里无法国际化啊,怎么解决??

image

coder-xiaomo commented 2 months ago

看看这个文件,直接在自己项目的 uni_modules 目录里面手动改一下这两个位置吧:

https://github.com/dcloudio/uni-ui/blob/master/uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.uvue https://github.com/dcloudio/uni-ui/blob/master/uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.vue

      popupTitle: {
        type: String,
        default: '请选择'
      },
      placeholder: {
        type: String,
        default: '请选择'
      },

image