Nuxt/examples/routes-meta/pages/parent.vue

19 lines
229 B
Vue
Raw Normal View History

2018-08-20 12:59:08 +00:00
<template>
<div>
<h1>Parent</h1>
Checkout
<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>