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.
 
 
 

20 lines
565 B

  1. import { defineMixin } from '../../libs/vue'
  2. import CarKeyboardDefaultProps from './carKeyboard'
  3. import { registerComponentProps } from '../../libs/config/props.js'
  4. const defProps = registerComponentProps(CarKeyboardDefaultProps)
  5. export const props = defineMixin({
  6. props: {
  7. // 是否打乱键盘按键的顺序
  8. random: {
  9. type: Boolean,
  10. default: false
  11. },
  12. // 输入一个中文后,是否自动切换到英文
  13. autoChange: {
  14. type: Boolean,
  15. default: false
  16. }
  17. }
  18. })