mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
Merge pull request #1209 from silverbackdan/patch-1
Improved default key for page with children
This commit is contained in:
commit
1165713b82
@ -7,6 +7,7 @@
|
||||
import Vue from 'vue'
|
||||
import NuxtChild from './nuxt-child'
|
||||
import NuxtError from '<%= components.ErrorPage ? ((components.ErrorPage.includes('~') || components.ErrorPage.includes('@')) ? components.ErrorPage : "../" + components.ErrorPage) : "./nuxt-error.vue" %>'
|
||||
import { compile } from '../utils'
|
||||
|
||||
export default {
|
||||
name: 'nuxt',
|
||||
@ -50,7 +51,7 @@ export default {
|
||||
routerViewKey () {
|
||||
// If nuxtChildKey prop is given or current route has children
|
||||
if (typeof this.nuxtChildKey !== 'undefined' || this.$route.matched.length > 1) {
|
||||
return this.nuxtChildKey || ''
|
||||
return this.nuxtChildKey || compile(this.$route.matched[0].path)(this.$route.params)
|
||||
}
|
||||
return this.$route.fullPath.split('#')[0]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user