hrms-mgt/src/App.vue

14 lines
256 B
Vue
Raw Normal View History

2024-09-03 11:28:01 +07:00
<script setup lang="ts"></script>
2023-06-01 12:54:58 +07:00
<template>
2024-09-03 11:28:01 +07:00
<div id="azay-admin-app">
<router-view v-slot="{ Component }">
<transition>
<component :is="Component" />
</transition>
</router-view>
</div>
2023-06-01 12:54:58 +07:00
</template>
2024-09-03 11:28:01 +07:00
<style scoped></style>