mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-27 08:02:01 +00:00
fix(vue-app): use getter to provide this.$nuxt
(#8170)
This commit is contained in:
parent
a52b5af694
commit
9c4dac3c61
@ -98,7 +98,8 @@ export default {
|
|||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
// Add this.$nuxt in child instances
|
// Add this.$nuxt in child instances
|
||||||
Vue.prototype.<%= globals.nuxt %> = this
|
this.$root.$options.<%= globals.nuxt %> = this
|
||||||
|
|
||||||
if (process.client) {
|
if (process.client) {
|
||||||
// add to window so we can listen when ready
|
// add to window so we can listen when ready
|
||||||
window.<%= globals.nuxt %> = <%= (globals.nuxt !== '$nuxt' ? 'window.$nuxt = ' : '') %>this
|
window.<%= globals.nuxt %> = <%= (globals.nuxt !== '$nuxt' ? 'window.$nuxt = ' : '') %>this
|
||||||
|
@ -44,6 +44,13 @@ Vue.component(NuxtChild.name, NuxtChild)
|
|||||||
// Component: <Nuxt>
|
// Component: <Nuxt>
|
||||||
Vue.component(Nuxt.name, Nuxt)
|
Vue.component(Nuxt.name, Nuxt)
|
||||||
|
|
||||||
|
Object.defineProperty(Vue.prototype, '<%= globals.nuxt %>', {
|
||||||
|
get() {
|
||||||
|
return this.$root.$options.<%= globals.nuxt %>
|
||||||
|
},
|
||||||
|
configurable: true
|
||||||
|
})
|
||||||
|
|
||||||
<% if (features.meta) {
|
<% if (features.meta) {
|
||||||
// vue-meta configuration
|
// vue-meta configuration
|
||||||
const vueMetaOptions = {
|
const vueMetaOptions = {
|
||||||
|
@ -110,6 +110,19 @@ describe('ssr', () => {
|
|||||||
await stressTest('/asyncData')
|
await stressTest('/asyncData')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test('does not share state', async () => {
|
||||||
|
const [page1, page2] = await Promise.all([
|
||||||
|
nuxt.server.renderRoute('/context'),
|
||||||
|
nuxt.server.renderRoute('/context/child')
|
||||||
|
])
|
||||||
|
|
||||||
|
expect(page1.html).toContain('vm: /context')
|
||||||
|
expect(page1.html).toContain('context: /context')
|
||||||
|
|
||||||
|
expect(page2.html).toContain('vm: /context/child')
|
||||||
|
expect(page2.html).toContain('context: /context/child')
|
||||||
|
})
|
||||||
|
|
||||||
// Close server and ask nuxt to stop listening to file changes
|
// Close server and ask nuxt to stop listening to file changes
|
||||||
afterAll(async () => {
|
afterAll(async () => {
|
||||||
await nuxt.close()
|
await nuxt.close()
|
||||||
|
10
test/fixtures/ssr/pages/context.vue
vendored
Normal file
10
test/fixtures/ssr/pages/context.vue
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<section data-test="parent">
|
||||||
|
<pre>vm: {{ $route.fullPath }}</pre>
|
||||||
|
<pre>context: {{ $nuxt.context.route.fullPath }}</pre>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<NuxtChild />
|
||||||
|
</div>
|
||||||
|
</template>
|
6
test/fixtures/ssr/pages/context/_id.vue
vendored
Normal file
6
test/fixtures/ssr/pages/context/_id.vue
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<template>
|
||||||
|
<section data-test="child">
|
||||||
|
<pre>vm: {{ $route.fullPath }}</pre>
|
||||||
|
<pre>context: {{ $nuxt.context.route.fullPath }}</pre>
|
||||||
|
</section>
|
||||||
|
</template>
|
Loading…
Reference in New Issue
Block a user