We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dc315e commit e65484eCopy full SHA for e65484e
spec/fixture.vue
@@ -0,0 +1,28 @@
1
+<template>
2
+ <splide :options="options">
3
+ <splide-slide>
4
+ <img src="image1.jpg">
5
+ </splide-slide>
6
7
+ <img src="image2.jpg">
8
9
10
+ <img src="image3.jpg">
11
12
+ </splide>
13
+</template>
14
+
15
+<script>
16
+ let x = 1
17
+ export default {
18
+ data() {
19
+ return {
20
+ options: {
21
+ rewind : true,
22
+ width : 800,
23
+ gap : '1rem',
24
+ },
25
+ };
26
27
+ }
28
+</script>
0 commit comments