I can't manipulate the instance with 'init:false'
After several tries, I'm stuck on a problem:
I can't manipulate the instance after initializing my swiper with “init:false”.
If I go back to the examples, I can use my 'swiper.prev' and 'swiper.next' buttons in this example:
`
<button @click="swiper.prev()"> Prev
<button @click="swiper.next()"> Next
`
But they no longer work in this one:
`
<button @click="swiper.prev()"> Prev
<button @click="swiper.next()"> Next
`
Is it a bug? Or am I doing something wrong?
@RemyAlbanes Can you supply a stackblitz example for me to debug?
Thanks!
Of course : https://stackblitz.com/edit/nuxt-starter-3k9txjcd?file=app.vue
@RemyAlbanes This actually might be related to this PR #140. I will have to double check the code, but this could be due to it returning the computed instance of the swiper, I will take a look here soon.
Thank you!
Hey guys, same problem here, any updates?