Eduardo San Martin Morote

Results 866 comments of Eduardo San Martin Morote

I tested with the 4 possible combinations among regular and functional components and the problem only appears when both are functional If you are up to give the fix a...

@sin1ght It's weird I couldn't see the problem in your repro using regular components but others' repro do show so I adapted the title. Sorry about that!

I don’t use pnp so any help for this is welcome!

Thanks for sharing your approach! I'm realizing this is quite old now and I haven't implemented any experimental APIs around it yet... I hope to get back to it after...

I published a new version with an experimental `extendRoute()` and `beforeWriteFiles()`. They both expose a wrapper around the route nodes that allow a limited set of operations. I think that...

I see. The vite-plugin-pages-sitemap will require a different plugin as that one relies on the array of routes in the format of vite-plugin-pages and this format is different but everything...

Thanks for the feedback. I think this one should be easy to migrate: ```ts VueRouter({ // ...most config removed for brievety... routeBlockLang: 'yaml', extendRoute(route) { // TODO: probably let user...

@gduliscouet-ubitransport Regarding the possible solutions, you can already use `beforeWriteFiles` to _copy_ a route that exists. Note that in the example you showed, one of your paths has a param...

Tracking the docs updates in https://github.com/users/posva/projects/2/views/1?query=is%3Aopen+sort%3Aupdated-desc&pane=issue&itemId=64673200 @gduliscouet-ubitransport `tree.insert()` returns an editable tree node that you can update, similar to a route record. I think that your current solution of importing...

I think it would make more sense to add an option to allow the plugin to read (parse with babel) from a router.ts file or routes.ts. The user would need...