2018-10-15 10:51:30 +08:00

22 lines
348 B
TypeScript

import { link } from '../mixins/link';
import { VantComponent } from '../common/component';
VantComponent({
mixins: [link],
props: {
text: String,
type: {
type: String,
value: 'danger'
}
},
methods: {
onClick(event: Weapp.Event) {
this.$emit('click', event.detail);
this.jumpLink();
}
}
});