vant-weapp/dist/icon/index.js
2018-12-03 17:34:26 +08:00

25 lines
480 B
JavaScript

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