| 123456789101112131415161718 |
- 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,
- info: String,
- icon: String
- },
- methods: {
- onClick: function onClick(event) {
- this.$emit('click', event.detail);
- this.jumpLink();
- }
- }
- });
|