tdesign-mobile-vue
Version:
tdesign-mobile-vue
67 lines (64 loc) • 1.01 kB
JavaScript
/**
* tdesign v1.9.3
* (c) 2025 TDesign Group
* @license MIT
*/
var DateTimePickerProps = {
cancelBtn: {
type: String,
default: ""
},
confirmBtn: {
type: String,
default: ""
},
end: {
type: [String, Number]
},
footer: {
type: Function
},
format: {
type: String,
default: "YYYY-MM-DD HH:mm:ss"
},
header: {
type: Function
},
mode: {
type: [String, Array],
default: "date"
},
renderLabel: {
type: Function
},
showWeek: Boolean,
start: {
type: [String, Number]
},
steps: {
type: Object,
default: function _default() {
return {};
}
},
title: {
type: String,
default: ""
},
value: {
type: [String, Number]
},
modelValue: {
type: [String, Number]
},
defaultValue: {
type: [String, Number]
},
onCancel: Function,
onChange: Function,
onConfirm: Function,
onPick: Function
};
export { DateTimePickerProps as default };
//# sourceMappingURL=props.js.map