mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
43 lines
717 B
TypeScript
43 lines
717 B
TypeScript
import { VantComponent } from '../common/component';
|
|
import { addUnit } from '../common/utils';
|
|
|
|
VantComponent({
|
|
props: {
|
|
info: null,
|
|
size: {
|
|
type: null,
|
|
observer: 'setSizeWithUnit'
|
|
},
|
|
color: String,
|
|
customStyle: String,
|
|
classPrefix: {
|
|
type: String,
|
|
value: 'van-icon'
|
|
},
|
|
name: {
|
|
type: String,
|
|
observer(val) {
|
|
this.setData({
|
|
isImageName: val.indexOf('/') !== -1
|
|
});
|
|
}
|
|
}
|
|
},
|
|
|
|
data: {
|
|
sizeWithUnit: null,
|
|
},
|
|
|
|
methods: {
|
|
onClick() {
|
|
this.$emit('click');
|
|
},
|
|
|
|
setSizeWithUnit(size: string | number): void {
|
|
this.setData({
|
|
sizeWithUnit: addUnit(size)
|
|
});
|
|
}
|
|
}
|
|
});
|