We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the Finding the matched route docs, clarify what map and set mean in:
map
set
Find all routes with all of their map properties set
Also, this is not totally correct:
If a route contains default values, these map properties must also be set to match the default value in order for the route to be matched:
This makes it sound like route('{page}',{page: "home"}) will not match a route like {page: "register"}.
route('{page}',{page: "home"})
{page: "register"}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the Finding the matched route docs, clarify what
map
andset
mean in:Also, this is not totally correct:
This makes it sound like
route('{page}',{page: "home"})
will not match a route like{page: "register"}
.The text was updated successfully, but these errors were encountered: