Neil Richter

Results 74 comments of Neil Richter

If your `MyModal` component emits events (the recommended way to update a prop), you should be able to achieve something like this: ```ts const localModalValue = ref(false); const isLoading =...

Yes, this is a caveat of using programmatic modals. Values are only passed at instantiation and are not tracked by the reactive system at this point. Your usage of the...

Hi, I did a PR to implement this very specific feature on the Spotify SDK a few years ago. https://github.com/spotify/spotify-web-api-ts-sdk/commit/ea9f5288d1303d54103a59e18b42aca38f102873 Feel free to reuse this work to achieve the desired...

Indeed, just came across this issue @josselinonduty There is a cache directory. Run `ls -la .nuxt/cache/nuxt/icon` and you'll notice every icon cached until now. You can remove the cache manually,...

As of now I'm not aware of an option to not show an item. I think as you said, your best option would be to filter out those items through...

What do you mean by "Do you see" ? `ssr: false` is how I achieve the client-side only rendering mode so this is supposedly the only thing I set to...

Indeed, I can see that. Perhaps would the `unmount` prop handle your usecase ? This prop is meant for components not to be mounted unless the current tab is the...

It's quite recent, I'm actually the one that introduced it for a very similar usecase! If you'd like to submit a PR to improve the documentation feel free! Otherwise I...

Did you correctly add `` somewhere in your app, preferably in `app.vue` ?