Files
cma-management/frontend/src/App.vue
T

11 lines
212 B
Vue

<template>
<router-view v-slot="{ Component }">
<transition name="fade" mode="out-in">
<component :is="Component" />
</transition>
</router-view>
</template>
<script setup lang="ts">
</script>