合伙人运营小程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

props.js 722B

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