hrms-recruit/src/App.vue

14 lines
256 B
Vue
Raw Normal View History

2023-03-14 18:48:33 +07:00
<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>