mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
25 lines
480 B
JavaScript
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');
|
|
}
|
|
}
|
|
}); |