注册流程
This commit is contained in:
34
components/tag/check-tag-props.js
Normal file
34
components/tag/check-tag-props.js
Normal file
@@ -0,0 +1,34 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user