2018-08-20 12:59:08 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<h1>Parent</h1>
|
|
|
|
Checkout
|
2018-11-24 18:49:19 +00:00
|
|
|
<NuxtLink to="/parent/blue">
|
|
|
|
Blue page
|
|
|
|
</NuxtLink>
|
|
|
|
<NuxtChild />
|
2018-08-20 12:59:08 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
meta: {
|
|
|
|
theme: 'orange'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|