solid-router icon indicating copy to clipboard operation
solid-router copied to clipboard

A universal router for Solid inspired by Ember and React Router

Results 110 solid-router issues
Sort by recently updated
recently updated
newest added

### Describe the bug I have these routes in my Router with HashIntegration: ```xml ``` Home just says home and Docs displays `Doc: {and here the :doc from useParams().doc}` When...

Hi Ryan, What do you think about adding support for Navigation Guards in order to allow middleware implementation like authorization. Vue did it this way: https://router.vuejs.org/guide/advanced/navigation-guards.html#global-before-guards While I like all...

enhancement

We are migrating from AngularDart to SolidJS right now. When evaluating the existing router solution there is a key peace we found missing for our applications to behave the same...

This will allow to have full type checking for `routeData` functions using the data provided by another `routeData` function. ```typescript import { routeData as parentRouteData } from "../__index" export function...

I have some pages that need to be logged in before they can be used, but I don't know how to encapsulate this component to achieve the purpose

When using, for example `solid-transition-group` to implement enter/exit transitions on route changes, e.g., ``` ... ... ``` it is useful to use a different set of `transitionProps` for the enter...

enhancement

### Describe the bug It happened to me like in the issue 83 report https://github.com/solidjs/solid-app-router/issues/83 that luckily I solved it. Since I can scroll from the same page to the...

I apologize if I am posting in the wrong place but https://github.com/solidjs/solid-app-router/discussions gives me 404. Basically I was trying to implement contextual modal navigation where the navigation path the user...

enhancement

With the introduction of having [multiple paths](https://github.com/solidjs/solid-app-router#multiple-paths) for one route, it might be useful to have a way to have an option in an arbitrary place in a path eg....

enhancement

Hey, I'm starting to use SolidJS and wanted to help the community. Would like to know if you are interested in: - adding history - adding back - templates for...