mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
19 lines
229 B
Vue
19 lines
229 B
Vue
<template>
|
|
<div>
|
|
<h1>Parent</h1>
|
|
Checkout
|
|
<NuxtLink to="/parent/blue">
|
|
Blue page
|
|
</NuxtLink>
|
|
<NuxtChild />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
meta: {
|
|
theme: 'orange'
|
|
}
|
|
}
|
|
</script>
|