opnform/resources/js/components/Child.vue

14 lines
180 B
Vue
Raw Normal View History

2022-09-20 19:59:52 +00:00
<template>
<transition name="page" mode="out-in">
<slot>
<router-view />
</slot>
</transition>
</template>
<script>
export default {
name: 'Child'
}
</script>