mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +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
16 lines
149 B
Vue
16 lines
149 B
Vue
<template>
|
|
<div>
|
|
Child Left content!
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ChildLeft'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|