Nuxt/examples/named-views/pages/index/section.vue
Andrey Shertsinger b1b9e0bcbc feat(vue-app): support named views (#4410)
* 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
2018-12-20 16:50:22 +01:00

17 lines
199 B
Vue

<template>
<div>
<h2>Section content</h2>
<p>This page does not have left panel.</p>
</div>
</template>
<script>
export default {
name: 'Section'
}
</script>
<style scoped>
</style>