rex c0db43fc88
feat(open-type): support getUserProfile (#4203)
* chore(open-type): merge open type mixin into button mixin

* chore(button): shorten open type method names

* feat(open-type): support getUserProfile
2021-05-11 15:24:04 +08:00

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();
},
},
});