-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
redirect route '/' to '/home',click browser 'goback' button,something is wrong #180
Comments
In [email protected], we can use |
Can you provide a reproduction? I couldn't reproduce it: https://jsfiddle.net/posva/3yq6ojLv/5 You can also use https://codesandbox.io/s/vue-router-v4-reproduction-tk1y7 for the reproduction |
The star path requires a parameter now: https://github.com/vuejs/vue-router-next#breaking-changes-compared-to-vue-router3x |
You can check this demo https://codesandbox.io/s/vue-router-v4-reproduction-qrgzx routes: [
{ path: '/', redirect: '/home'},
{ path: '/home', component: Home },
{ path: '/foo', component: Foo },
{ path: '/bar', component: Bar },
] when i enter this app, the url will redirect to |
I have the same doubt... |
[email protected]
vue-router@^4.0.0-alpha.7
here is my routes
i can enter my app on
localhost:8080
, it can redirect tolocalhost:8080/home
; it works.But,when i use
router.push({ path: '/detail'})
in componentHome
, it goes tolocalhost:8080/detail
, then, click the click browser 'goback' button, it goes tolocalhost:8080
, it never go tolocalhost:8080/home
The text was updated successfully, but these errors were encountered: