UNPKG

tdesign-mobile-vue

Version:
43 lines (38 loc) 775 B
/** * tdesign v1.7.0 * (c) 2024 TDesign Group * @license MIT */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var SkeletonProps = { 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, default: "text", validator: function validator(val) { if (!val) return true; return ["avatar", "image", "text", "paragraph"].includes(val); } } }; exports["default"] = SkeletonProps; //# sourceMappingURL=props.js.map