mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
21 lines
316 B
Vue
21 lines
316 B
Vue
<template>
|
|
<div>
|
|
<h3>I am the blue page</h3>
|
|
<p>I am a child of /parent, and the theme is overwritten by myself!</p>
|
|
<p>
|
|
Go back to
|
|
<NuxtLink to="/parent">
|
|
Parent
|
|
</NuxtLink>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
meta: {
|
|
theme: 'blue'
|
|
}
|
|
}
|
|
</script>
|