water_xcx/miniprogram_npm/tdesign-miniprogram/search/props.js

47 lines
749 B
JavaScript
Raw Normal View History

2025-04-15 15:44:51 +08:00
const props = {
action: {
type: String,
value: '',
},
center: {
type: Boolean,
value: false,
},
disabled: {
type: Boolean,
value: false,
},
externalClasses: {
type: Array,
},
focus: {
type: Boolean,
value: false,
},
label: {
type: String,
value: '',
},
leftIcon: {
type: String,
value: 'search',
},
placeholder: {
type: String,
value: '',
},
rightIcon: {
type: String,
value: 'close',
},
shape: {
type: String,
value: 'square',
},
value: {
type: String,
value: '',
},
};
export default props;