vant
This commit is contained in:
22
utils/dist/goods-action-icon/index.js
vendored
Normal file
22
utils/dist/goods-action-icon/index.js
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { link } from '../mixins/link';
|
||||
import { button } from '../mixins/button';
|
||||
import { openType } from '../mixins/open-type';
|
||||
VantComponent({
|
||||
classes: ['icon-class', 'text-class'],
|
||||
mixins: [link, button, openType],
|
||||
props: {
|
||||
text: String,
|
||||
dot: Boolean,
|
||||
info: String,
|
||||
icon: String,
|
||||
disabled: Boolean,
|
||||
loading: Boolean
|
||||
},
|
||||
methods: {
|
||||
onClick(event) {
|
||||
this.$emit('click', event.detail);
|
||||
this.jumpLink();
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user