mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
29 lines
496 B
TypeScript
29 lines
496 B
TypeScript
import { VantComponent } from '../common/component';
|
|
import { BLUE } from '../common/color';
|
|
|
|
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,
|
|
value: 4,
|
|
},
|
|
},
|
|
});
|