UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

38 lines (35 loc) 722 B
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ /* unplugin-vue-components disabled */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); } } }; export { props as default }; //# sourceMappingURL=props.js.map