props.js 519 B

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