Blame view

uni_modules/uview-plus/components/u-car-keyboard/props.js 430 Bytes
a2702f6d   刘淇   巡查计划
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  import { defineMixin } from '../../libs/vue'
  import defProps from '../../libs/config/props.js'
  
  export const props = defineMixin({
      props: {
          // 是否打乱键盘按键的顺序
          random: {
              type: Boolean,
              default: false
          },
          // 输入一个中文后,是否自动切换到英文
          autoChange: {
              type: Boolean,
              default: false
          }
      }
  })