1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- const props = {
- autoplay: {
- type: Boolean,
- value: true,
- },
- current: {
- type: Number,
- value: 0,
- },
- direction: {
- type: String,
- value: 'horizontal',
- },
- displayMultipleItems: {
- type: Number,
- value: 1,
- },
- duration: {
- type: Number,
- value: 300,
- },
- easingFunction: {
- type: String,
- value: 'default',
- },
- height: {
- type: null,
- value: 192,
- },
- imageProps: {
- type: Object,
- },
- interval: {
- type: Number,
- value: 5000,
- },
- list: {
- type: Array,
- },
- loop: {
- type: Boolean,
- value: true,
- },
- navigation: {
- type: null,
- value: true,
- },
- nextMargin: {
- type: null,
- value: 0,
- },
- paginationPosition: {
- type: String,
- value: 'bottom',
- },
- previousMargin: {
- type: null,
- value: 0,
- },
- snapToEdge: {
- type: Boolean,
- value: false,
- },
- };
- export default props;
|