props.js 741 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. const props = {
  2. align: {
  3. type: String,
  4. value: 'middle',
  5. },
  6. arrow: {
  7. type: null,
  8. value: false,
  9. },
  10. bordered: {
  11. type: Boolean,
  12. value: true,
  13. },
  14. description: {
  15. type: String,
  16. },
  17. hover: {
  18. type: Boolean,
  19. },
  20. image: {
  21. type: String,
  22. },
  23. jumpType: {
  24. type: String,
  25. value: 'navigateTo',
  26. },
  27. leftIcon: {
  28. type: null,
  29. },
  30. note: {
  31. type: String,
  32. },
  33. required: {
  34. type: Boolean,
  35. value: false,
  36. },
  37. rightIcon: {
  38. type: null,
  39. },
  40. title: {
  41. type: String,
  42. },
  43. url: {
  44. type: String,
  45. value: '',
  46. },
  47. };
  48. export default props;