vant-weapp/dist/icon/index.js
2018-09-21 20:17:48 +08:00

19 lines
353 B
JavaScript

import { VantComponent } from '../common/component';
VantComponent({
props: {
info: null,
name: String,
size: String,
color: String,
classPrefix: {
type: String,
value: 'van-icon'
}
},
methods: {
onClick() {
this.$emit('click');
}
}
});