You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe π
No.
Describe the solution you'd like π€
I would like to be able to do routing without having a search box on my page.
Describe alternatives you've considered β¨
I added routing using the parseURL method. It works great, but only when I have a search box on my page. This is because of const { query = queryName } = qsModule.parse( location.search.slice(1) ); the location.search part is telling the query to go into the search box so that my results can be filtered. But I want them to be filtered without a search box, when the page loads. Is this possible? If not, here is my feature request :)
Additional context
Here is my complete routing code:
Is your feature request related to a problem? Please describe π
No.
Describe the solution you'd like π€
I would like to be able to do routing without having a search box on my page.
Describe alternatives you've considered β¨
I added routing using the parseURL method. It works great, but only when I have a search box on my page. This is because of
const { query = queryName } = qsModule.parse( location.search.slice(1) );
the location.search part is telling the query to go into the search box so that my results can be filtered. But I want them to be filtered without a search box, when the page loads. Is this possible? If not, here is my feature request :)Additional context
Here is my complete routing code:
The text was updated successfully, but these errors were encountered: