+
+ Loading...
+
+
+ Error: {{ error.data.code }}
+
+
+ ID: {{ todo?.id }}
+ Title: {{ todo?.title }}
+ Completed: {{ todo?.completed }}
+
+
+
diff --git a/src/client/index.ts b/src/client/index.ts
index 1a8ca4e..b4e0d3e 100644
--- a/src/client/index.ts
+++ b/src/client/index.ts
@@ -4,7 +4,7 @@ import { createFlatProxy, createRecursiveProxy } from '@trpc/server/shared'
import { hash } from 'ohash'
import { type DecoratedProcedureRecord } from './types'
// @ts-expect-error: Nuxt auto-imports
-import { getCurrentInstance, onScopeDispose, useAsyncData } from '#imports'
+import { getCurrentInstance, onScopeDispose, useAsyncData, unref } from '#imports'
/**
* Calculates the key used for `useAsyncData` call.
@@ -54,8 +54,8 @@ export function createNuxtProxyDecoration