ragnarlotus / vue-flux

Image slider which comes with 20 cool transitions
https://ragnarlotus.github.io/vue-flux-docs/demos/demos
MIT License
542 stars 49 forks source link

How destroy the object before unmount the vue-flux? #119

Closed ARM-developer closed 6 months ago

ARM-developer commented 7 months ago

I tried deleting the component with the reference but it didn't work.

image

ragnarlotus commented 6 months ago

if you want to delete it without finishing the transhition:

const player = $vueFlux.value.getlayer();
await player.stop(true);

or...

setting the emit stop to do whatever you want

$vueFlux.value.stop(true);