chore: upgrade dependencies for nuxt 3.2.2

This commit is contained in:
CRBroughton
2023-03-27 21:48:14 +01:00
parent fa6ba65d35
commit 1defbe5954
5 changed files with 1752 additions and 711 deletions

View File

@@ -8,8 +8,8 @@ const { data: todo, pending, error } = await useAsyncData(() => $client.todo.get
<div v-if="pending">
Loading...
</div>
<div v-else-if="error?.data?.code">
{{ error.data.code }}
<div v-else-if="error">
{{ error.message }} - {{ error.cause }}
</div>
<div v-else>
ID: {{ todo?.id }} <br>