hrms-edm/Services/client/src/App.vue

10 lines
177 B
Vue
Raw Normal View History

2023-11-23 08:47:44 +07:00
<template>
<div>
2023-11-23 08:47:44 +07:00
<router-view v-slot="{ Component }">
<transition>
<component :is="Component" />
</transition>
</router-view>
</div>
</template>