Rednas
Rednas
I know the status is `discussion` but it already received 6 upvotes so it would at least make 6 people happy😉 Are there plans for supporting this? Any thoughts about...
I think it's better to use `app.vue` instead of `pages/index.vue`. I also had some strange issues when using `pages/index.vue` with `useNuxtApp()` and `await`
I also asked for adding trpc functionality in the todos demo from atinux. It could use some upvotes😉 https://github.com/Atinux/nuxt-todos-edge/issues/15
Just tried `queryCollectionNavigation` but that only seems to work with the **page** collection type on the type level. Should it not also work for the **data** collection type? Also tried...
When called directly from **app.js** it still errors but with more clear errors. **Server** ``` ℹ Error: no such column: "path" - should this be a string literal in single-quotes?...
I guess that makes sense, but is there also a way to list all the data collections defined inside the schema? If not, can you please consider adding support for...
Any thoughts?
> [@biroplane](https://github.com/biroplane) [@Rednas83](https://github.com/Rednas83) You can do a few things like that: > > const { data: navigation } = await useAsyncData('navigation', () => { > return Promise.all([ > queryCollectionNavigation('docs'), >...
After downgrading nuxt it works again ``` pnpm uninstall nuxt pnpm install [email protected] ``` So, it seems to be an issue with the latest nuxt version
The hydration mismatch warnings are gone after updating to 1.6.7, but the `v-model` is still not updated with the form values. For now I will keep using `[email protected]` as a...