Closed ckhatton closed 4 years ago
Reference the carousel and call its handleNavigation method.
for eg:
next() {
this.$refs.carousel.handleNavigation()
},
prev() {
this.$refs.carousel.handleNavigation('backward')
}
note: your carousel component should have ref attribute set to 'carousel' for this example
You legend!! ⭐️ Thank you
I have created a standalone button on the slide. How does one trigger a slide change forward?
Currently I have created a method, but it breaks the order of the slides:
:octocat: