mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
91 lines
2.3 KiB
JavaScript
91 lines
2.3 KiB
JavaScript
import Vue from 'vue'
|
|
import { compile } from '../utils'
|
|
|
|
<% if (components.ErrorPage) { %>
|
|
<% if (('~@').includes(components.ErrorPage.charAt(0))) { %>
|
|
import NuxtError from '<%= components.ErrorPage %>'
|
|
<% } else { %>
|
|
import NuxtError from '<%= "../" + components.ErrorPage %>'
|
|
<% } %>
|
|
<% } else { %>
|
|
import NuxtError from './nuxt-error.vue'
|
|
<% } %>
|
|
import NuxtChild from './nuxt-child'
|
|
|
|
<%= isTest ? '// @vue/component' : '' %>
|
|
export default {
|
|
name: 'Nuxt',
|
|
components: {
|
|
NuxtChild,
|
|
NuxtError
|
|
},
|
|
props: {
|
|
nuxtChildKey: {
|
|
type: String,
|
|
default: undefined
|
|
},
|
|
keepAlive: Boolean,
|
|
keepAliveProps: {
|
|
type: Object,
|
|
default: undefined
|
|
},
|
|
name: {
|
|
type: String,
|
|
default: 'default'
|
|
}
|
|
},
|
|
computed: {
|
|
routerViewKey() {
|
|
// If nuxtChildKey prop is given or current route has children
|
|
if (typeof this.nuxtChildKey !== 'undefined' || this.$route.matched.length > 1) {
|
|
return this.nuxtChildKey || compile(this.$route.matched[0].path)(this.$route.params)
|
|
}
|
|
|
|
const [matchedRoute] = this.$route.matched
|
|
const Component = matchedRoute && matchedRoute.components.default
|
|
if (Component && Component.options) {
|
|
const { key, watchQuery } = Component.options
|
|
|
|
if (key) {
|
|
return (typeof key === 'function' ? key(this.$route) : key)
|
|
}
|
|
|
|
if (watchQuery) {
|
|
if (watchQuery.length) {
|
|
const pickedQuery = {}
|
|
for (const queryKey of watchQuery) {
|
|
pickedQuery[queryKey] = this.$route.query[queryKey]
|
|
}
|
|
return this.$router.resolve({
|
|
path: this.$route.path,
|
|
query: pickedQuery
|
|
}).href
|
|
}
|
|
return this.$route.fullPath
|
|
}
|
|
}
|
|
|
|
const strict = /\/$/.test(matchedRoute.path)
|
|
return strict ? this.$route.path : this.$route.path.replace(/\/$/, '')
|
|
}
|
|
},
|
|
beforeCreate() {
|
|
Vue.util.defineReactive(this, 'nuxt', this.$root.$options.nuxt)
|
|
},
|
|
render(h) {
|
|
// If there is some error
|
|
if (this.nuxt.err) {
|
|
return h('NuxtError', {
|
|
props: {
|
|
error: this.nuxt.err
|
|
}
|
|
})
|
|
}
|
|
// Directly return nuxt child
|
|
return h('NuxtChild', {
|
|
key: this.routerViewKey,
|
|
props: this.$props
|
|
})
|
|
}
|
|
}
|