vant
This commit is contained in:
38
utils/dist/progress/index.js
vendored
Normal file
38
utils/dist/progress/index.js
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { BLUE } from '../common/color';
|
||||
import { addUnit } from '../common/utils';
|
||||
VantComponent({
|
||||
props: {
|
||||
inactive: Boolean,
|
||||
percentage: Number,
|
||||
pivotText: String,
|
||||
pivotColor: String,
|
||||
trackColor: String,
|
||||
showPivot: {
|
||||
type: Boolean,
|
||||
value: true
|
||||
},
|
||||
color: {
|
||||
type: String,
|
||||
value: BLUE
|
||||
},
|
||||
textColor: {
|
||||
type: String,
|
||||
value: '#fff'
|
||||
},
|
||||
strokeWidth: {
|
||||
type: null,
|
||||
observer: 'setStrokeWidthUnit'
|
||||
}
|
||||
},
|
||||
data: {
|
||||
strokeWidthUnit: '4px'
|
||||
},
|
||||
methods: {
|
||||
setStrokeWidthUnit(val) {
|
||||
this.setData({
|
||||
strokeWidthUnit: addUnit(val)
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user