tdesign-vue
Version:
35 lines (32 loc) • 596 B
JavaScript
/**
* tdesign v1.12.1
* (c) 2025 tdesign
* @license MIT
*/
var props = {
animation: {
type: String,
validator: function validator(val) {
return ["gradient", "flashed"].includes(val);
}
},
loading: {
type: Boolean,
"default": true
},
rowCol: {
type: Array
},
theme: {
type: String,
validator: function validator(val) {
return ["text", "avatar", "paragraph", "avatar-text", "tab", "article"].includes(val);
}
},
delay: {
type: Number,
"default": 0
}
};
export { props as default };
//# sourceMappingURL=props.js.map