Eduardo San Martin Morote

Results 866 comments of Eduardo San Martin Morote

Using radix3 for a custom matcher would be nice. Note it doesn't cover all features (it can't as a trie). It's really great to see that there is no performance...

Thanks a lot! I’m still not sure if we want to merge all doc translations here. I will come back to this in January/february. In the meantime, we could just...

You are being redirected to the Home page because that’s what you return in the navigation guard

I opened https://github.com/vuejs/router/pull/2133 with a workaround.

This is what we call transient state (state available only during navigation) and is planned in a way that would align with the upcoming navigation API (https://github.com/WICG/navigation-api#example-using-info). It would require...

did you try moving the `onVnodeUnmounted()` outside of the render function to fix the problem? Maybe it just needs that

It's true having the closure avoided timing issues. Having a watcher didn't cover all cases if I remember well but I think I added tests so they should fail if...

I think I found a way of fixing this. It still rerenders when using a `` component but it looks like a Vue behavior. I need to check that further.

This behavior is intended for regular params like `:param` because the `/` is a delimiter of params, but it should probably not happen for star params (`:param(.*)`) Note to myself...

This is due to the implicit parameter being passed during a redirection. You can workaround it by passing an empty object of Params alongside the name of the route: `redirect:...