props.js 586 B

1234567891011121314151617181920212223242526272829303132333435
  1. const props = {
  2. current: {
  3. type: Number,
  4. value: 0,
  5. },
  6. customStyle: {
  7. type: String,
  8. value: '',
  9. },
  10. direction: {
  11. type: String,
  12. value: 'horizontal',
  13. },
  14. minShowNum: {
  15. type: Number,
  16. value: 2,
  17. },
  18. paginationPosition: {
  19. type: String,
  20. value: 'bottom',
  21. },
  22. showControls: {
  23. type: Boolean,
  24. value: false,
  25. },
  26. total: {
  27. type: Number,
  28. value: 0,
  29. },
  30. type: {
  31. type: String,
  32. value: 'dots',
  33. },
  34. };
  35. export default props;