()
| 237 | |
| 238 | // Navigate to the previous slide |
| 239 | const _prev = () => { |
| 240 | |
| 241 | // Store old index before modifying the counter |
| 242 | const oldIndex = c() |
| 243 | const newIndex = c(-1) |
| 244 | |
| 245 | _goto(newIndex, oldIndex) |
| 246 | |
| 247 | } |
| 248 | |
| 249 | // Navigate to the next slide |
| 250 | const _next = () => { |