注册流程

This commit is contained in:
limqhz
2022-12-16 17:32:49 +08:00
parent b746aaaa83
commit eb5c301d00
57 changed files with 1839 additions and 20 deletions

38
components/tag/props.js Normal file
View 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;