opnform/resources/js/components/Child.vue

14 lines
231 B
Vue
Raw Normal View History

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