nantai-erp-wechat-mobile/miniprogram_npm/vant-weapp/progress/index.js
2024-10-31 21:29:57 +08:00

23 lines
486 B
JavaScript

import { VantComponent } from '../common/component';
import { BLUE } from '../common/color';
VantComponent({
props: {
inactive: Boolean,
percentage: Number,
pivotText: String,
pivotColor: String,
showPivot: {
type: Boolean,
value: true
},
color: {
type: String,
value: BLUE
},
textColor: {
type: String,
value: '#fff'
}
}
});