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

17 lines
219 B
Vue
Raw Normal View History

2018-08-20 12:59:08 +00:00
<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>