props.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. const props = {
  2. autoplay: {
  3. type: Boolean,
  4. value: true,
  5. },
  6. current: {
  7. type: Number,
  8. value: 0,
  9. },
  10. direction: {
  11. type: String,
  12. value: 'horizontal',
  13. },
  14. displayMultipleItems: {
  15. type: Number,
  16. value: 1,
  17. },
  18. duration: {
  19. type: Number,
  20. value: 300,
  21. },
  22. easingFunction: {
  23. type: String,
  24. value: 'default',
  25. },
  26. height: {
  27. type: null,
  28. value: 192,
  29. },
  30. imageProps: {
  31. type: Object,
  32. },
  33. interval: {
  34. type: Number,
  35. value: 5000,
  36. },
  37. list: {
  38. type: Array,
  39. },
  40. loop: {
  41. type: Boolean,
  42. value: true,
  43. },
  44. navigation: {
  45. type: null,
  46. value: true,
  47. },
  48. nextMargin: {
  49. type: null,
  50. value: 0,
  51. },
  52. paginationPosition: {
  53. type: String,
  54. value: 'bottom',
  55. },
  56. previousMargin: {
  57. type: null,
  58. value: 0,
  59. },
  60. snapToEdge: {
  61. type: Boolean,
  62. value: false,
  63. },
  64. };
  65. export default props;