trpc-nuxt
trpc-nuxt copied to clipboard
End-to-end typesafe APIs in Nuxt applications.
First of all, thanks for creating this project, its a massive joy to work with. But I've noticed a couple of bugs around useAsyncQuery: 1. The options that one can...
Is it possible to do this since I want to do something for example with the ip address that made the request to trpc
TRPC allow you set [custom data transformers](https://trpc.io/docs/data-transformers), but, seems, [trpc-nuxt](https://github.com/wobsoriano/trpc-nuxt) does not provide a similar opportunity
It's not possible to run this when deployed on Cloudflare Workers. I'm getting the error `global is not defined`. Might have something to do with how the fetch workers there....
Hey! This is a great library that I was trying out with nuxt.js and integrating it, but it was not working for me and after several hours of investigating, it...
Hey! I just have some questions about if there is a plan to integrate this as an official adapter package for nuxt since I don't see any other similar open...
Nuxt docs says: > During server-side rendering, calling $fetch to fetch your internal [API routes ](https://v3.nuxtjs.org/guide/directory-structure/server)will directly call the relevant function (emulating the request), saving an additional API call. Does...
```ts export default defineNuxtConfig({ trpc: { baseURL: 'http://localhost:3000/', //
Here reproduction: https://stackblitz.com/edit/github-ryfoyv?file=components/UserInfo.vue Query calls in `UserInfo.vue`. This component is not rendered until the user has performed a specific action. But after rendering, the variable `error` remains `null`
This resolves #9 The main issue is that the client tries to use `serverError` from `useState` and ignores the `error` from `useAsyncData`. I'm not exactly sure how `serverError` is populated....