fix publish issue

This commit is contained in:
Robert Soriano
2022-05-19 01:20:47 -07:00
parent 31cde3e8a2
commit c7ac9ee09d
21 changed files with 839 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<script setup lang="ts">
const { data, error } = await useAsyncQuery(['getUser', { username: 'jcena' }], {
lazy: true,
})
const client = useClient()
</script>
<template>
<div>
<div v-if="data">
{{ JSON.stringify(data, null, 2) }}
</div>
<div v-else-if="error">
asdx {{ JSON.stringify(error, null, 2) }}
</div>
</div>
</template>