Sandro Circi
Sandro Circi
> vue component > `` :src="`${siteUrl.url}assets/${service.icon?.filename_disk}?key=webp-icon`" ``. oh, that is an interesting use and never realized that. Perhaps you could export the url from your `useDirectusItems()` that you are already...
I'm going to tag the boys here: @Intevel @casualmatt This is my simple reproduction in our playground: #### [`~/playground/composables/test.ts`](https://github.com/Intevel/nuxt-directus/blob/2cbf154ae52b90ba5d561757db8e81fb579c11a0/playground/composables/test.ts) ```ts import type { Ref } from 'vue' import { readItems...
Oh, now that I think about it, this also explains a few issue I had months ago about `collection`s variables and I thought were solved by placing them into `ref`s
in the meanwhile @alexanderivn you could create your local composable like this: ```js import { readItems } from '@directus/sdk' export default async function useGetAllServices () { const { client }...
I'm going to treat this issue also as a backlog for my experimentations on this topic. I was able to reproduce the issue even in [a local composable (inside the...
I might have understood what is going on. In short Vue loses the reactivity tracking for things inside non-reactive parameters like `params.query`. I've noticed this while fixing the reactivity for...
### FYI I'm delaying this till later we are in a stable `6.0.0` version, since it will require quite some time to fix.
I'm reopening this to mainly track reactivity of query parameters for the new implementation of `useAsyncData`. More info can be found in the release discussed at [#215 (comment)](https://github.com/Intevel/nuxt-directus/discussions/215#discussioncomment-8574579).
Are there any logs that I could provide to be useful to debug this? This issue has been affecting the DX of [`@nuxt/ui` (issue #1501)](https://github.com/nuxt/ui/issues/1501) since volar `2.0`
With `2.0.10` locally defined components do seem to be correctly resolved, while dep ones still aren't.