From 5d101aae8378bd35e1b0a99b1050760a70cc92db Mon Sep 17 00:00:00 2001 From: Conrawl Rogers Date: Thu, 8 Dec 2022 14:05:00 -0400 Subject: [PATCH] fix: add missing import for unref --- src/runtime/composables/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/composables/index.ts b/src/runtime/composables/index.ts index 0952372..525b11b 100644 --- a/src/runtime/composables/index.ts +++ b/src/runtime/composables/index.ts @@ -1,6 +1,6 @@ import { defu } from 'defu' import { hash } from 'ohash' -import { isRef, reactive } from 'vue' +import { unref, isRef, reactive } from 'vue' import type { Ref } from 'vue' import type { AsyncData } from 'nuxt/dist/app/composables' import type { ClientError } from 'graphql-request'