tdesign-vue-next
Version:
TDesign Component for vue-next
42 lines (37 loc) • 763 B
JavaScript
/**
* tdesign v1.15.2
* (c) 2025 tdesign
* @license MIT
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var props = {
animation: {
type: String,
"default": "none",
validator: function validator(val) {
if (!val) return true;
return ["gradient", "flashed", "none"].includes(val);
}
},
delay: {
type: Number,
"default": 0
},
loading: {
type: Boolean,
"default": true
},
rowCol: {
type: Array
},
theme: {
type: String,
validator: function validator(val) {
if (!val) return true;
return ["text", "avatar", "paragraph", "avatar-text", "tab", "article"].includes(val);
}
}
};
exports["default"] = props;
//# sourceMappingURL=props.js.map