nidapeng
2024-04-07 517b1e08824bb54abccaed92980bc0cf298d2030
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default {
    props: {
        // 是否打乱键盘按键的顺序
        random: {
            type: Boolean,
            default: false
        },
        // 输入一个中文后,是否自动切换到英文
        autoChange: {
            type: Boolean,
            default: false
        }
    }
}