mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
17 lines
219 B
Vue
17 lines
219 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<h1>Parent</h1>
|
||
|
Checkout
|
||
|
<nuxt-link to="/parent/blue">Blue page</nuxt-link>
|
||
|
<nuxt-child/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
meta: {
|
||
|
theme: 'orange'
|
||
|
}
|
||
|
}
|
||
|
</script>
|