You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
538 B

10 months ago
  1. export default {
  2. props: {
  3. // 键盘的类型,number-数字键盘,card-身份证键盘
  4. mode: {
  5. type: String,
  6. default: uni.$u.props.numberKeyboard.value
  7. },
  8. // 是否显示键盘的"."符号
  9. dotDisabled: {
  10. type: Boolean,
  11. default: uni.$u.props.numberKeyboard.dotDisabled
  12. },
  13. // 是否打乱键盘按键的顺序
  14. random: {
  15. type: Boolean,
  16. default: uni.$u.props.numberKeyboard.random
  17. }
  18. }
  19. }