Daniel Roe

Results 1868 comments of Daniel Roe

@metasean I understand you're frustrated. This is something we all experience at the moment when running `npm audit` so you're not alone. However, its output is not within the control...

@caioferrarezi Yes.

Please see https://github.com/veged/coa/issues/99 and immediately use a resolution to prevent installing malicious code.

@XPAULUSX All of the dependencies you list are _build-time_ and are not installed in your built app. This is a [helpful summary](https://overreacted.io/npm-audit-broken-by-design/) of the situation.

@fago You can use yarn or pnpm resolutions to force a given dependency version to be resolved/installed in your project.

Would you provide a reproduction via https://template.nuxtjs.org? 🙏

Have you tried `hash: '#anchor'`? You can see the default scrollBehavior [here](https://nuxtjs.org/api/configuration-router/#scrollbehavior) and you can override this. I typically use something like this: ``` router: { scrollBehavior: async function(to, from,...

Yes, I understand, and agree there's an issue. It looks like hashes work if the page changes (try clicking the link from `/about`), but not otherwise. I suggest it is...

Looking at this, it's an upstream issue in `vue-router` - see https://github.com/vuejs/vue-router/issues/1668 for description, reproduction and some workarounds. Nothing in `scrollBehavior` will be able to fix this because as far...

@josh-collinsworth It seems to be working fine for me: https://stackblitz.com/edit/github-n3gkty. Note that if you are using object syntax then you use `path` and not `to`.