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>