props.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. export default {
  2. props: {
  3. // 是否展示骨架组件
  4. loading: {
  5. type: Boolean,
  6. default: uni.$u.props.skeleton.loading
  7. },
  8. // 是否开启动画效果
  9. animate: {
  10. type: Boolean,
  11. default: uni.$u.props.skeleton.animate
  12. },
  13. // 段落占位图行数
  14. rows: {
  15. type: [String, Number],
  16. default: uni.$u.props.skeleton.rows
  17. },
  18. // 段落占位图的宽度
  19. rowsWidth: {
  20. type: [String, Number, Array],
  21. default: uni.$u.props.skeleton.rowsWidth
  22. },
  23. // 段落占位图的高度
  24. rowsHeight: {
  25. type: [String, Number, Array],
  26. default: uni.$u.props.skeleton.rowsHeight
  27. },
  28. // 是否展示标题占位图
  29. title: {
  30. type: Boolean,
  31. default: uni.$u.props.skeleton.title
  32. },
  33. // 段落标题的宽度
  34. titleWidth: {
  35. type: [String, Number],
  36. default: uni.$u.props.skeleton.titleWidth
  37. },
  38. // 段落标题的高度
  39. titleHeight: {
  40. type: [String, Number],
  41. default: uni.$u.props.skeleton.titleHeight
  42. },
  43. // 是否展示头像占位图
  44. avatar: {
  45. type: Boolean,
  46. default: uni.$u.props.skeleton.avatar
  47. },
  48. // 头像占位图大小
  49. avatarSize: {
  50. type: [String, Number],
  51. default: uni.$u.props.skeleton.avatarSize
  52. },
  53. // 头像占位图的形状,circle-圆形,square-方形
  54. avatarShape: {
  55. type: String,
  56. default: uni.$u.props.skeleton.avatarShape
  57. }
  58. }
  59. }