gree_leran/node_modules/uview-plus/components/u-number-keyboard/props.js

21 lines
595 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import defProps from '../../libs/config/props.js';
export default {
props: {
// 键盘的类型number-数字键盘card-身份证键盘
mode: {
type: String,
default: () => defProps.numberKeyboard.value
},
// 是否显示键盘的"."符号
dotDisabled: {
type: Boolean,
default: () => defProps.numberKeyboard.dotDisabled
},
// 是否打乱键盘按键的顺序
random: {
type: Boolean,
default: () => defProps.numberKeyboard.random
}
}
}