city-casereport/miniprogram_npm/tdesign-miniprogram/progress/props.js

33 lines
497 B
JavaScript
Raw Normal View History

2023-12-06 14:22:42 +08:00
const props = {
color: {
type: null,
value: '',
},
externalClasses: {
type: Array,
},
label: {
type: null,
value: true,
},
percentage: {
type: Number,
value: 0,
},
status: {
type: String,
},
strokeWidth: {
type: null,
},
theme: {
type: String,
value: 'line',
},
trackColor: {
type: String,
value: '',
},
};
export default props;