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
My structure
App page
<app-location route={{route}}></app-location> <app-route route="{{route}}" pattern="/:page" data="{{data}}" tail="{{subroute}}"></app-route> <neon-animated-pages attr-for-selected="id" selected="{{data.page}}"> <foo-page id="foo" route="{{subroute}}"></foo-page>= <bar-page id="bar" route="{{subroute}}"></bar-page> </neon-animated-pages>
foo page
<app-route route="{{route}}" pattern="/:subpage" data="{{data}}"></app-route> <neon-animated-pages attr-for-selected="id" selected="{{data.subpage}}" fallback-selection="not-found"> ... </neon-animated-pages>
bar page
<app-route route="{{route}}" pattern="/:subpage" data="{{data}}"></app-route>
Problem:
Redirect from /bar/some-url to /bar/not-found because of fallback-selection in foo-page
/bar/some-url
/bar/not-found
fallback-selection
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My structure
App page
foo page
bar page
Problem:
Redirect from
/bar/some-url
to/bar/not-found
because offallback-selection
in foo-pageThe text was updated successfully, but these errors were encountered: