mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* chore(open-type): merge open type mixin into button mixin * chore(button): shorten open type method names * feat(open-type): support getUserProfile
26 lines
500 B
TypeScript
26 lines
500 B
TypeScript
import { VantComponent } from '../common/component';
|
|
import { button } from '../mixins/button';
|
|
import { link } from '../mixins/link';
|
|
|
|
VantComponent({
|
|
classes: ['icon-class', 'text-class'],
|
|
|
|
mixins: [link, button],
|
|
|
|
props: {
|
|
text: String,
|
|
dot: Boolean,
|
|
info: String,
|
|
icon: String,
|
|
disabled: Boolean,
|
|
loading: Boolean,
|
|
},
|
|
|
|
methods: {
|
|
onClick(event: WechatMiniprogram.CustomEvent) {
|
|
this.$emit('click', event.detail);
|
|
this.jumpLink();
|
|
},
|
|
},
|
|
});
|