hrms-recruit/src/App.vue
2023-03-14 18:48:33 +07:00

13 lines
256 B
Vue

<script setup lang="ts"></script>
<template>
<div id="azay-admin-app">
<router-view v-slot="{ Component }">
<transition>
<component :is="Component" />
</transition>
</router-view>
</div>
</template>
<style scoped></style>