tav-ui
Version:
47 lines (45 loc) • 774 B
JavaScript
const timeLineProps = {
list: {
type: Array,
default: () => []
},
useLoadingMore: {
type: Boolean,
default: true
},
renderListItem: {
type: Function || null,
default: null
}
};
const timeLineListEmits = ["loadingMore"];
const timeLineTagProps = {
label: {
type: String,
default: ""
},
tooltip: {
type: String,
default: ""
},
color: {
type: String,
default: ""
}
};
const timeLineItemProps = {
itemData: {
type: Object,
default: () => {
return {
status: "",
times: [],
title: "",
tags: [],
description: []
};
}
}
};
export { timeLineItemProps, timeLineListEmits, timeLineProps, timeLineTagProps };
//# sourceMappingURL=types2.mjs.map