opnform-host-nginx/resources/js/components/Child.vue

14 lines
231 B
Vue
Raw Normal View History

2022-09-20 21:59:52 +02:00
<template>
2023-10-14 17:31:30 +02:00
<router-view v-slot="{ Component }">
<transition name="page" mode="out-in">
<component :is="Component" />
</transition>
</router-view>
2022-09-20 21:59:52 +02:00
</template>
<script>
export default {
name: 'Child'
}
</script>