tdesign-mobile-vue
Version:
tdesign-mobile-vue
48 lines (45 loc) • 882 B
JavaScript
/**
* tdesign v1.7.0
* (c) 2024 TDesign Group
* @license MIT
*/
var CountDownProps = {
autoStart: {
type: Boolean,
default: true
},
content: {
type: [String, Function],
default: "default"
},
format: {
type: String,
default: "HH:mm:ss"
},
millisecond: Boolean,
size: {
type: String,
default: "medium",
validator: function validator(val) {
if (!val) return true;
return ["small", "medium", "large"].includes(val);
}
},
splitWithUnit: Boolean,
theme: {
type: String,
default: "default",
validator: function validator(val) {
if (!val) return true;
return ["default", "round", "square"].includes(val);
}
},
time: {
type: Number,
required: true
},
onChange: Function,
onFinish: Function
};
export { CountDownProps as default };
//# sourceMappingURL=props.js.map