1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- const props = {
- disabled: {
- type: Boolean,
- value: false,
- },
- enableBackToTop: {
- type: Boolean,
- value: true,
- },
- enablePassive: {
- type: Boolean,
- value: false,
- },
- externalClasses: {
- type: Array,
- },
- loadingBarHeight: {
- type: null,
- value: 50,
- },
- loadingProps: {
- type: Object,
- },
- loadingTexts: {
- type: Array,
- value: [],
- },
- lowerThreshold: {
- type: null,
- value: 50,
- },
- maxBarHeight: {
- type: null,
- value: 80,
- },
- refreshTimeout: {
- type: Number,
- value: 3000,
- },
- scrollIntoView: {
- type: String,
- value: '',
- },
- showScrollbar: {
- type: Boolean,
- value: true,
- },
- upperThreshold: {
- type: null,
- value: 50,
- },
- usingCustomNavbar: {
- type: Boolean,
- value: false,
- },
- value: {
- type: Boolean,
- value: null,
- },
- defaultValue: {
- type: Boolean,
- value: false,
- },
- };
- export default props;
|