Files
hoppscotch/packages/hoppscotch-common/src/layouts/empty.vue
2022-12-02 03:05:35 -05:00

8 lines
181 B
Vue

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