mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-20 21:14:31 +00:00
14 lines
179 B
Vue
14 lines
179 B
Vue
<template>
|
|
<transition name="page" mode="out-in">
|
|
<slot>
|
|
<router-view/>
|
|
</slot>
|
|
</transition>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Child'
|
|
}
|
|
</script>
|