mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 07:13:44 +09:00
19 lines
313 B
Vue
19 lines
313 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<Suspense>
|
|
<RouterView v-slot="{ Component }">
|
|
<Transition
|
|
name="fade-slow"
|
|
mode="out-in"
|
|
>
|
|
<component :is="Component" />
|
|
</Transition>
|
|
</RouterView>
|
|
</Suspense>
|
|
</div>
|
|
</template>
|