Blame view
src/wxcomponents/vant/icon/index.js
874 Bytes
289f85d9e 提交 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
import { VantComponent } from '../common/component'; import { addUnit } from '../common/utils'; VantComponent({ props: { dot: Boolean, 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) { this.setData({ sizeWithUnit: addUnit(size) }); } } }); |