xdesign-vue-next
Version:
XDesign Component for vue-next
48 lines (45 loc) • 866 B
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
/* unplugin-vue-components disabled */var props = {
color: {
type: [String, Object, Array],
"default": ""
},
label: {
type: [String, Boolean, Function],
"default": true
},
percentage: {
type: Number,
"default": 0
},
size: {
type: [String, Number],
"default": "medium"
},
status: {
type: String,
validator: function validator(val) {
return ["success", "error", "warning", "active"].includes(val);
}
},
strokeWidth: {
type: [String, Number]
},
theme: {
type: String,
"default": "line",
validator: function validator(val) {
return ["line", "plump", "circle"].includes(val);
}
},
trackColor: {
type: String,
"default": ""
}
};
export { props as default };
//# sourceMappingURL=props.js.map