Skip to content

Commit 067b102

Browse files
committed
initial commit
1 parent ccc0884 commit 067b102

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

resources/js/components/Child.vue

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<template>
2+
<transition name="page" mode="out-in">
3+
<slot>
4+
<router-view />
5+
</slot>
6+
</transition>
7+
</template>
8+
9+
<script>
10+
export default {
11+
name: 'Child'
12+
}
13+
</script>

0 commit comments

Comments
 (0)