hrms-edm/Services/client/src/App.vue
2023-11-30 09:35:20 +07:00

9 lines
177 B
Vue

<template>
<div>
<router-view v-slot="{ Component }">
<transition>
<component :is="Component" />
</transition>
</router-view>
</div>
</template>