mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
24 lines
571 B
JavaScript
24 lines
571 B
JavaScript
import { VantComponent } from '../common/component';
|
|
import { link } from '../mixins/link';
|
|
import { button } from '../mixins/button';
|
|
import { openType } from '../mixins/open-type';
|
|
VantComponent({
|
|
mixins: [link, button, openType],
|
|
props: {
|
|
text: String,
|
|
color: String,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
type: {
|
|
type: String,
|
|
value: 'danger'
|
|
}
|
|
},
|
|
methods: {
|
|
onClick(event) {
|
|
this.$emit('click', event.detail);
|
|
this.jumpLink();
|
|
}
|
|
}
|
|
});
|