From b2adb87be4601b2b5e74c32c1788eb56894ac6fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Fri, 28 Jun 2024 11:46:48 +0200 Subject: [PATCH] chore: fix playground with new nuxt shallow ref --- playground/app/pages/blob.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playground/app/pages/blob.vue b/playground/app/pages/blob.vue index 2685303a..0f281072 100644 --- a/playground/app/pages/blob.vue +++ b/playground/app/pages/blob.vue @@ -14,7 +14,8 @@ const { data: blobData } = await useFetch('/api/blob', { folded, prefix, limit - } + }, + deep: true }) const files = computed(() => blobData.value?.blobs || [])