Files
hoppscotch/packages/hoppscotch-app/src/layouts/empty.vue
Andrew Bastin 8b300fab5d feat: migrate to vue 3 + vite (#2553)
Co-authored-by: amk-dev <akash.k.mohan98@gmail.com>
Co-authored-by: liyasthomas <liyascthomas@gmail.com>
2022-09-29 10:55:21 +05:30

8 lines
181 B
Vue

<template>
<RouterView v-slot="{ Component }">
<Transition name="fade" mode="out-in" appear>
<component :is="Component" />
</Transition>
</RouterView>
</template>