mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
b1b9e0bcbc
* support named views for extendRoutes config * fix lint errors * fix lint errors 2 * some refactoring * var rename * fixture & unit tests * fix: style * nuxt-child named view example and test * nuxt element with named view in layout * lint
51 lines
873 B
Vue
Executable File
51 lines
873 B
Vue
Executable File
<template lang="html">
|
|
<div class="main">
|
|
<h1>Main page</h1>
|
|
<p>This is an example of a named views</p>
|
|
<ul>
|
|
<li>
|
|
<NuxtLink to="/">
|
|
Root
|
|
</NuxtLink>
|
|
</li>
|
|
<li>
|
|
<NuxtLink to="/section">
|
|
Section
|
|
</NuxtLink>
|
|
</li>
|
|
<li>
|
|
<NuxtLink to="/child/123">
|
|
Child 123
|
|
</NuxtLink>
|
|
</li>
|
|
<li>
|
|
<NuxtLink to="/child/234">
|
|
Child 234
|
|
</NuxtLink>
|
|
</li>
|
|
<li>
|
|
<NuxtLink to="/main">
|
|
Main page with named view in layout
|
|
</NuxtLink>
|
|
</li>
|
|
</ul>
|
|
|
|
<hr>
|
|
<p>At top of this page there is named view from layout!</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Main'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.main {
|
|
margin: auto;
|
|
max-width: 420px;
|
|
padding: 10px;
|
|
}
|
|
</style>
|