mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
40 lines
888 B
JavaScript
40 lines
888 B
JavaScript
import { VantComponent } from '../common/component';
|
|
import { addUnit } from '../common/utils';
|
|
VantComponent({
|
|
props: {
|
|
size: {
|
|
type: String,
|
|
observer: 'setSizeWithUnit'
|
|
},
|
|
type: {
|
|
type: String,
|
|
value: 'circular'
|
|
},
|
|
color: {
|
|
type: String,
|
|
value: '#c9c9c9'
|
|
},
|
|
textSize: {
|
|
type: String,
|
|
observer: 'setTextSizeWithUnit'
|
|
},
|
|
vertical: Boolean
|
|
},
|
|
data: {
|
|
sizeWithUnit: '30px',
|
|
textSizeWithUnit: '14px'
|
|
},
|
|
methods: {
|
|
setSizeWithUnit(size) {
|
|
this.setData({
|
|
sizeWithUnit: addUnit(size)
|
|
});
|
|
},
|
|
setTextSizeWithUnit(size) {
|
|
this.set({
|
|
textSizeWithUnit: addUnit(size)
|
|
});
|
|
}
|
|
}
|
|
});
|