-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
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
Will vue-router hash mode be supported? #100
Comments
Hi @ksakiyama , You should be able to support Change: onRedirectCallback: appState => {
router.push(
appState && appState.targetUrl
? appState.targetUrl
: window.location.pathname
);
} to: onRedirectCallback: appState => {
history.replaceState({}, document.title, window.location.pathname); // <=
router.push(
appState && appState.targetUrl
? appState.targetUrl
: window.location.pathname
);
} This is because in Without this, the Am closing this, feel free to reopen if this hasn't answered your question. |
Hi @adamjmcgrath , |
Hi,
These samples works well only in vue-router history mode. But the default for vue-router is hash mode. Do you have a plan to support hash mode in the future?
The text was updated successfully, but these errors were encountered: