mirror of
https://github.com/ArthurDanjou/trpc-nuxt.git
synced 2026-01-14 12:14:40 +01:00
13 lines
222 B
Vue
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>
|