xdesign-vue-next
Version:
XDesign Component for vue-next
57 lines (54 loc) • 973 B
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
/* unplugin-vue-components disabled */var props = {
autofocus: Boolean,
autosize: {
type: [Boolean, Object],
"default": false
},
disabled: Boolean,
maxcharacter: {
type: Number
},
maxlength: {
type: Number
},
name: {
type: String,
"default": ""
},
placeholder: {
type: String,
"default": void 0
},
readonly: Boolean,
status: {
type: String,
validator: function validator(val) {
return ["default", "success", "warning", "error"].includes(val);
}
},
tips: {
type: [String, Function]
},
value: {
type: [String, Number]
},
modelValue: {
type: [String, Number]
},
defaultValue: {
type: [String, Number]
},
onBlur: Function,
onChange: Function,
onFocus: Function,
onKeydown: Function,
onKeypress: Function,
onKeyup: Function
};
export { props as default };
//# sourceMappingURL=props.js.map