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:
const first = this.slides.shift()
this.slides = this.slides.concat(first)
:octocat:
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

Most helpful comment
Reference the carousel and call its handleNavigation method.
for eg:
note: your carousel component should have ref attribute set to 'carousel' for this example