2018-10-15 11:29:24 +08:00

18 lines
349 B
JavaScript

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