This repository was archived by the owner on Feb 24, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +18
-17
lines changed Expand file tree Collapse file tree 2 files changed +18
-17
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ trim_trailing_whitespace = true
10
10
insert_final_newline = true
11
11
12
12
[* .md ]
13
+ indent_style = space
13
14
trim_trailing_whitespace = false
14
15
15
16
[* .{yml,yaml} ]
Original file line number Diff line number Diff line change @@ -69,10 +69,10 @@ Vue.use(VueAgile)
69
69
// YourComponent.vue
70
70
import { VueAgile } from ' vue-agile'
71
71
72
- export default {
73
- components: {
74
- agile: VueAgile
75
- }
72
+ export default {
73
+ components: {
74
+ agile: VueAgile
75
+ }
76
76
}
77
77
```
78
78
@@ -87,17 +87,17 @@ export default {
87
87
88
88
``` vue
89
89
<template>
90
- <agile>
91
- <div class="slide">
92
- <h3>slide 1</h3>
93
- </div>
94
-
95
- ...
96
-
97
- <div class="slide">
98
- <h3>slide n</h3>
99
- </div>
100
- </agile>
90
+ <agile>
91
+ <div class="slide">
92
+ <h3>slide 1</h3>
93
+ </div>
94
+
95
+ ...
96
+
97
+ <div class="slide">
98
+ <h3>slide n</h3>
99
+ </div>
100
+ </agile>
101
101
</template>
102
102
```
103
103
@@ -172,8 +172,8 @@ Every first-level child of `<agile>` is a new slide. You also can group them ins
172
172
173
173
``` js
174
174
showCurrentSlide (event ) {
175
- console .log (event )
176
- // Shows for example: { currentSlide: 1 }
175
+ console .log (event )
176
+ // Shows for example: { currentSlide: 1 }
177
177
}
178
178
```
179
179
You can’t perform that action at this time.
0 commit comments