mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
22 lines
348 B
TypeScript
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();
|
|
}
|
|
}
|
|
});
|