31 lines
479 B
JavaScript
31 lines
479 B
JavaScript
|
const props = {
|
||
|
externalClasses: {
|
||
|
type: Array,
|
||
|
},
|
||
|
visibilityHeight: {
|
||
|
type: Number,
|
||
|
value: 200,
|
||
|
},
|
||
|
scrollTop: {
|
||
|
type: Number,
|
||
|
value: 0,
|
||
|
},
|
||
|
fixed: {
|
||
|
type: Boolean,
|
||
|
value: true,
|
||
|
},
|
||
|
icon: {
|
||
|
type: null,
|
||
|
value: true,
|
||
|
},
|
||
|
text: {
|
||
|
type: String,
|
||
|
value: '',
|
||
|
},
|
||
|
theme: {
|
||
|
type: String,
|
||
|
value: 'round',
|
||
|
},
|
||
|
};
|
||
|
export default props;
|