From f3823b044dcc2a5165c089a5aa4de513e440ca15 Mon Sep 17 00:00:00 2001 From: Johann Schopplich Date: Fri, 10 Jun 2022 17:20:53 +0200 Subject: [PATCH] fix: `computed` not auto-imported in module --- src/runtime/composables/kql.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/composables/kql.ts b/src/runtime/composables/kql.ts index 069141f..4d9fa70 100644 --- a/src/runtime/composables/kql.ts +++ b/src/runtime/composables/kql.ts @@ -1,6 +1,6 @@ import type { NitroFetchRequest } from 'nitropack' import type { Ref } from 'vue' -import { isRef } from 'vue' +import { computed, isRef } from 'vue' import type { KqlQueryRequest, KqlQueryResponse } from '../types' import type { AsyncData, UseFetchOptions } from '#app' import { useFetch, useRuntimeConfig } from '#app'