15 lines
242 B
Vue
15 lines
242 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>
|