diff --git a/helpers/utils/composables.ts b/helpers/utils/composables.ts index 7dad49e91..d2aed799d 100644 --- a/helpers/utils/composables.ts +++ b/helpers/utils/composables.ts @@ -6,9 +6,12 @@ import { Ref, ref, watch, + wrapProperty, } from "@nuxtjs/composition-api" import { Observable, Subscription } from "rxjs" +export const useNuxt = wrapProperty("$nuxt") + export function useReadonlyStream( stream$: Observable, initialValue: T