Daniel Roe

Results 2592 comments of Daniel Roe

@ivan-rivera This seems to be caused by `require-extension-hooks-vue`. Note that using yarn will also resolve this issue.

This is triggered when code modifies the headers of a response after the response has already been made. For example, you are redirecting within a `setTimeout` on server. Or It...

Yes, the (vue app composable) `useCookie` will try to set a cookie if the value has changed from the initial value. I'm very happy for you to comment here with...

**Reproduction for a way of triggering this**: https://stackblitz.com/edit/github-u3et7v. HT: @benjamincanac.

@TrexKikBut I would suggest first installing WSL following [these directions](https://docs.microsoft.com/en-us/windows/wsl/install-win10). You'll have the most consistent experience that way. You may also have better luck running `npx create-nuxt-app tpshopping` instead.

@narthkings Make sure to add `vuetify` to your dependencies.

It may not be the issue - not looked into it in more detail - but your index page does have two root elements: ```vue Go to parent Go to...

I think the root issue here is the same as https://github.com/nuxt/framework/issues/3587 and is an upstream suspense + transition issue. You can work around it by disabling page transitions, which will...

@edwh I would guess that it's probably a dynamic component using `:is`.

The error is using a component that isn't registered. Sometimes people only register components in a client-side plugin? Or you might be using a name that doesn't match? For follow-up,...