diff --git a/app/pages/index.vue b/app/pages/index.vue index 7376ca4bc..d04123e59 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -22,7 +22,9 @@ console.log({ baseURL }) let catalogPath = `${baseURL}/catalog.json` -let { data: catalogJson } = await useFetch(catalogPath) +let { data: catalogJson } = await useAsyncData(() => + $fetch(catalogPath), +) let catalog = catalogJson.value