vuejs transition to switch between pages

Solutions on MaxInterview for vuejs transition to switch between pages by the best coders in the world

showing results for - "vuejs transition to switch between pages"
Emmanuel
21 Oct 2020
1<!-- App.vue -->
2<router-view v-slot="{ Component }">
3  	<transition name="slither" mode="in-out">
4    	<component :is="Component"></component>
5	</transition>
6</router-view>