props.js 530 B

12345678910111213141516171819202122232425262728293031323334
  1. const props = {
  2. badgeProps: {
  3. type: Object,
  4. value: null,
  5. },
  6. description: {
  7. type: String,
  8. },
  9. icon: {
  10. type: null,
  11. },
  12. image: {
  13. type: String,
  14. },
  15. imageProps: {
  16. type: Object,
  17. },
  18. jumpType: {
  19. type: String,
  20. value: 'navigate-to',
  21. },
  22. layout: {
  23. type: String,
  24. value: 'vertical',
  25. },
  26. text: {
  27. type: String,
  28. },
  29. url: {
  30. type: String,
  31. value: '',
  32. },
  33. };
  34. export default props;