props.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. const props = {
  2. disabled: {
  3. type: Boolean,
  4. value: false,
  5. },
  6. enableBackToTop: {
  7. type: Boolean,
  8. value: true,
  9. },
  10. enablePassive: {
  11. type: Boolean,
  12. value: false,
  13. },
  14. externalClasses: {
  15. type: Array,
  16. },
  17. loadingBarHeight: {
  18. type: null,
  19. value: 50,
  20. },
  21. loadingProps: {
  22. type: Object,
  23. },
  24. loadingTexts: {
  25. type: Array,
  26. value: [],
  27. },
  28. lowerThreshold: {
  29. type: null,
  30. value: 50,
  31. },
  32. maxBarHeight: {
  33. type: null,
  34. value: 80,
  35. },
  36. refreshTimeout: {
  37. type: Number,
  38. value: 3000,
  39. },
  40. scrollIntoView: {
  41. type: String,
  42. value: '',
  43. },
  44. showScrollbar: {
  45. type: Boolean,
  46. value: true,
  47. },
  48. upperThreshold: {
  49. type: null,
  50. value: 50,
  51. },
  52. usingCustomNavbar: {
  53. type: Boolean,
  54. value: false,
  55. },
  56. value: {
  57. type: Boolean,
  58. value: null,
  59. },
  60. defaultValue: {
  61. type: Boolean,
  62. value: false,
  63. },
  64. };
  65. export default props;