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.
21 lines
429 B
21 lines
429 B
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
props: {
|
|
size: String,
|
|
mark: Boolean,
|
|
color: String,
|
|
plain: Boolean,
|
|
round: Boolean,
|
|
textColor: String,
|
|
type: {
|
|
type: String,
|
|
value: 'default'
|
|
},
|
|
closeable: Boolean
|
|
},
|
|
methods: {
|
|
onClose() {
|
|
this.$emit('close');
|
|
}
|
|
}
|
|
});
|