props.js 650 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. const props = {
  2. content: {
  3. type: null,
  4. },
  5. direction: {
  6. type: String,
  7. value: 'horizontal',
  8. },
  9. interval: {
  10. type: Number,
  11. value: 2000,
  12. },
  13. marquee: {
  14. type: null,
  15. value: false,
  16. },
  17. operation: {
  18. type: String,
  19. },
  20. prefixIcon: {
  21. type: null,
  22. value: true,
  23. },
  24. suffixIcon: {
  25. type: null,
  26. },
  27. theme: {
  28. type: String,
  29. value: 'info',
  30. },
  31. visible: {
  32. type: Boolean,
  33. value: null,
  34. },
  35. defaultVisible: {
  36. type: Boolean,
  37. value: false,
  38. },
  39. };
  40. export default props;