You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
458 B

3 months ago
  1. import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
  2. const skeletonProps = buildProps({
  3. animated: {
  4. type: Boolean,
  5. default: false
  6. },
  7. count: {
  8. type: Number,
  9. default: 1
  10. },
  11. rows: {
  12. type: Number,
  13. default: 3
  14. },
  15. loading: {
  16. type: Boolean,
  17. default: true
  18. },
  19. throttle: {
  20. type: definePropType([Number, Object])
  21. }
  22. });
  23. export { skeletonProps };
  24. //# sourceMappingURL=skeleton.mjs.map