Static GitHub Issues

[968] Does nuxt support named view routes?

prev: alpha.4 resolving to alpha2 with yarn
next: Problems with asyncData in Express.js + SSL

I can't find how I could, for example, extend routes with something like this:

routes: [
    {
      path: '/',
      components: {
        default: Foo,
        a: Bar,
        b: Baz
      }
    }
]

And then use named views like this on the page:

<router-view class="view one"></router-view>
<router-view class="view two" name="a"></router-view>
<router-view class="view three" name="b"></router-view>

When I use extendRoutes function it keeps giving me an error that it could not find module dependency

./.nuxt/route.js
<!--cmty--><!--cmty_prevent_hook--><div align="right"><sub><em>This question is available on <a href="https://nuxtjs.cmty.io">Nuxt.js</a> community (<a href="https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c836">#c836</a>)</em></sub></div>