2019-09-03 15:28:51 +08:00

29 lines
455 B
TypeScript

import { VantComponent } from '../common/component';
VantComponent({
props: {
info: null,
size: String,
color: String,
customStyle: String,
classPrefix: {
type: String,
value: 'van-icon'
},
name: {
type: String,
observer(val) {
this.setData({
isImageName: val.indexOf('/') !== -1
});
}
}
},
methods: {
onClick() {
this.$emit('click');
}
}
});