tdesign-vue-next
Version:
TDesign Component for vue-next
42 lines (37 loc) • 772 B
JavaScript
/**
* tdesign v1.15.2
* (c) 2025 tdesign
* @license MIT
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var props = {
closeBtn: {
type: [String, Boolean, Function],
"default": void 0
},
content: {
type: [String, Function]
},
duration: {
type: Number,
"default": 3e3
},
icon: {
type: [Boolean, Function],
"default": true
},
theme: {
type: String,
"default": "info",
validator: function validator(val) {
if (!val) return true;
return ["info", "success", "warning", "error", "question", "loading"].includes(val);
}
},
onClose: Function,
onCloseBtnClick: Function,
onDurationEnd: Function
};
exports["default"] = props;
//# sourceMappingURL=props.js.map