mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 00:23:53 +00:00
fix(nuxt): augment @vue/runtime-core
and @vue/runtime-dom
(#28446)
This commit is contained in:
parent
6eefc98e49
commit
d51365f9ec
20
packages/nuxt/src/app/types/augments.d.ts
vendored
20
packages/nuxt/src/app/types/augments.d.ts
vendored
@ -51,3 +51,23 @@ declare module 'vue' {
|
|||||||
head?(nuxtApp: NuxtApp): UseHeadInput
|
head?(nuxtApp: NuxtApp): UseHeadInput
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare module '@vue/runtime-core' {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
|
interface App<HostElement> {
|
||||||
|
$nuxt: NuxtApp
|
||||||
|
}
|
||||||
|
interface ComponentCustomProperties {
|
||||||
|
$nuxt: NuxtApp
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '@vue/runtime-dom' {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
|
interface App<HostElement> {
|
||||||
|
$nuxt: NuxtApp
|
||||||
|
}
|
||||||
|
interface ComponentCustomProperties {
|
||||||
|
$nuxt: NuxtApp
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -130,6 +130,14 @@ declare module '#app' {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare module '@vue/runtime-core' {
|
||||||
|
interface ComponentCustomProperties extends NuxtAppInjections { }
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '@vue/runtime-dom' {
|
||||||
|
interface ComponentCustomProperties extends NuxtAppInjections { }
|
||||||
|
}
|
||||||
|
|
||||||
declare module 'vue' {
|
declare module 'vue' {
|
||||||
interface ComponentCustomProperties extends NuxtAppInjections { }
|
interface ComponentCustomProperties extends NuxtAppInjections { }
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user