@fesjs/fes-design
Version:
fes-design for PC
42 lines (40 loc) • 592 B
JavaScript
const commonInputProps = {
modelValue: {
type: [Number, String]
},
type: {
type: String,
default: 'text'
},
placeholder: {
type: String
},
readonly: {
type: Boolean,
default: false
},
disabled: {
type: Boolean,
default: false
},
clearable: {
type: Boolean,
default: false
},
maxlength: {
type: Number
},
showPassword: {
type: Boolean,
default: false
},
inputStyle: {
type: Object,
default: () => ({})
},
autocomplete: {
type: String,
default: 'off'
}
};
export { commonInputProps };