mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-21 21:25:11 +00:00
fix: try call instance related composables earlier
This commit is contained in:
parent
2a47785ddd
commit
77a96a27f4
@ -1,5 +1,5 @@
|
||||
import { getCurrentInstance, reactive, toRefs } from 'vue'
|
||||
import type { DefineComponent, defineComponent } from 'vue'
|
||||
import type { ComponentInternalInstance, DefineComponent, defineComponent } from 'vue'
|
||||
import { useHead } from '@unhead/vue'
|
||||
import type { NuxtApp } from '../nuxt'
|
||||
import { useNuxtApp } from '../nuxt'
|
||||
@ -9,10 +9,8 @@ import { createError } from './error'
|
||||
|
||||
export const NuxtComponentIndicator = '__nuxt_component'
|
||||
|
||||
async function runLegacyAsyncData (res: Record<string, any> | Promise<Record<string, any>>, fn: (nuxtApp: NuxtApp) => Promise<Record<string, any>>) {
|
||||
async function runLegacyAsyncData (res: Record<string, any> | Promise<Record<string, any>>, vm: ComponentInternalInstance, route: ReturnType<typeof useRoute>, fn: (nuxtApp: NuxtApp) => Promise<Record<string, any>>) {
|
||||
const nuxtApp = useNuxtApp()
|
||||
const route = useRoute()
|
||||
const vm = getCurrentInstance()!
|
||||
const { fetchKey, _fetchKeyBase } = vm.proxy!.$options
|
||||
const key = (typeof fetchKey === 'function' ? fetchKey(() => '') : fetchKey) ||
|
||||
([_fetchKeyBase, route.fullPath, route.matched.findIndex(r => Object.values(r.components || {}).includes(vm.type))].join(':'))
|
||||
@ -51,7 +49,9 @@ export const defineNuxtComponent: typeof defineComponent =
|
||||
const res = setup ? Promise.resolve(setup(props, ctx)).then(r => r || {}) : {}
|
||||
const promises: Promise<any>[] = []
|
||||
if (options.asyncData) {
|
||||
promises.push(nuxtApp.runWithContext(() => runLegacyAsyncData(res, options.asyncData)))
|
||||
const route = useRoute()
|
||||
const vm = getCurrentInstance()!
|
||||
promises.push(nuxtApp.runWithContext(() => runLegacyAsyncData(res, vm, route, options.asyncData)))
|
||||
}
|
||||
|
||||
if (options.head) {
|
||||
|
Loading…
Reference in New Issue
Block a user