注册流程
This commit is contained in:
38
components/tag/props.js
Normal file
38
components/tag/props.js
Normal file
@@ -0,0 +1,38 @@
|
||||
const props = {
|
||||
closable: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
value: false,
|
||||
},
|
||||
externalClasses: {
|
||||
type: Array,
|
||||
},
|
||||
icon: {
|
||||
type: String,
|
||||
value: '',
|
||||
},
|
||||
maxWidth: {
|
||||
type: String,
|
||||
optionalTypes: [Number],
|
||||
},
|
||||
shape: {
|
||||
type: String,
|
||||
value: 'square',
|
||||
},
|
||||
size: {
|
||||
type: String,
|
||||
value: 'medium',
|
||||
},
|
||||
theme: {
|
||||
type: String,
|
||||
value: 'default',
|
||||
},
|
||||
variant: {
|
||||
type: String,
|
||||
value: 'dark',
|
||||
},
|
||||
};
|
||||
export default props;
|
||||
Reference in New Issue
Block a user