Using Vue 3 along with Vue Router 4 and a web hash history router
I encountered an issue where a URL with a query parameter was not being recognized by Vue, leading to unexpected redirect problems in my application.
For instance:
Original URL: Https://example.com/?foo=bar#/
Desired URL: Https://example.com/#/?foo=bar
It seems like the #/ at the end of the URL is causing Vue to overlook the query parameter. Is there a way to resolve this issue?