vant-weapp/dist/icon/index.js
2018-12-07 16:13:02 +08:00

19 lines
337 B
JavaScript

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