Files
trpc-nuxt/playground/app.vue
2022-05-18 09:09:11 -07:00

13 lines
222 B
Vue

<script setup lang="ts">
const client = useClient()
const { data, error } = await useAsyncData('random', () => client.query('hello'), {
server: false,
})
</script>
<template>
<div>
{{ data }}
</div>
</template>