xdesign-vue-next
Version:
XDesign Component for vue-next
33 lines (30 loc) • 604 B
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
/* unplugin-vue-components disabled */var timelineItemProps = {
content: {
type: [String, Function]
},
dot: {
type: Function
},
dotColor: {
type: String,
"default": "primary"
},
label: {
type: [String, Function]
},
labelAlign: {
type: String,
validator: function validator(val) {
if (!val) return true;
return ["left", "right", "top", "bottom"].includes(val);
}
},
loading: Boolean
};
export { timelineItemProps as default };
//# sourceMappingURL=timeline-item-props.js.map