[Vuejs]-NUXT VUE Transition in component when leaving page

-1👍

You can wrap your component with the <transition name="yourTransitionName"></transition> tag.

In CSS:

.yourTransitionName-leave-active {
/* your code */
}

Leave a comment