You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
644 B
42 lines
644 B
1 year ago
|
const props = {
|
||
|
color: {
|
||
|
type: String,
|
||
|
value: '',
|
||
|
},
|
||
|
content: {
|
||
|
type: String,
|
||
|
value: '',
|
||
|
},
|
||
|
count: {
|
||
|
type: null,
|
||
|
value: 0,
|
||
|
},
|
||
|
dot: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
externalClasses: {
|
||
|
type: Array,
|
||
|
},
|
||
|
maxCount: {
|
||
|
type: Number,
|
||
|
value: 99,
|
||
|
},
|
||
|
offset: {
|
||
|
type: Array,
|
||
|
},
|
||
|
shape: {
|
||
|
type: String,
|
||
|
value: 'circle',
|
||
|
},
|
||
|
showZero: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
size: {
|
||
|
type: String,
|
||
|
value: 'medium',
|
||
|
},
|
||
|
};
|
||
|
export default props;
|