Files
quinn-wx/components/tag/check-tag-props.js
2022-12-16 17:32:49 +08:00

35 lines
574 B
JavaScript

const props = {
checked: {
type: Boolean,
value: undefined,
},
defaultChecked: {
type: null,
value: undefined,
},
closable: {
type: Boolean,
value: false,
},
content: {
type: String,
optionalTypes: [Number],
},
disabled: {
type: Boolean,
value: false,
},
icon: {
type: String,
},
shape: {
type: String,
value: 'square',
},
size: {
type: String,
value: 'medium',
},
};
export default props;