mirror of
https://github.com/ArthurDanjou/trpc-nuxt.git
synced 2026-01-14 20:19:33 +01:00
15 lines
237 B
Vue
15 lines
237 B
Vue
<script setup lang="ts">
|
|
const { data, error } = await useTrpcQuery('getUser', {
|
|
name: 'john',
|
|
})
|
|
|
|
watchEffect(() => {
|
|
console.log(data.value)
|
|
console.log('err', error.value)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>hello</div>
|
|
</template>
|