mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +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
17 lines
216 B
Vue
Executable File
17 lines
216 B
Vue
Executable File
<template lang="html">
|
|
<div class="main">
|
|
LEFT:<NuxtChild name="left" />:LEFT
|
|
CHILD:<NuxtChild />:CHILD
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Stage'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|