component.scheme.js 592 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. export const propsScheme = {
  2. timestamp: {
  3. type: String,
  4. intro: '时间轴'
  5. },
  6. title: {
  7. type: String,
  8. intro: '内容'
  9. },
  10. hollow: {
  11. type: Boolean,
  12. default: false,
  13. intro: '空心还是实心'
  14. },
  15. color: {
  16. type: String,
  17. intro: '颜色',
  18. default: '#e6e6e6'
  19. },
  20. icon: {
  21. type: String,
  22. intro: '图标',
  23. default: ''
  24. }
  25. }
  26. export const eventsScheme = {
  27. click: {
  28. cbVar: 'e'
  29. }
  30. }
  31. export const slotsScheme = {
  32. default: {
  33. cbVar: 'text'
  34. }
  35. }
  36. export const componentScheme = {
  37. propsScheme,
  38. slotsScheme,
  39. eventsScheme
  40. }