opnform/resources/js/components/Child.vue

14 lines
231 B
Vue

<template>
<router-view v-slot="{ Component }">
<transition name="page" mode="out-in">
<component :is="Component" />
</transition>
</router-view>
</template>
<script>
export default {
name: 'Child'
}
</script>