-
-
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
Warning when using pathMatch #951
Comments
Hi, @narwajea const router = createRouter({
history: createWebHistory(),
routes: [
{
name: "home",
path: "/:env",
component: Home,
},
{ path: "/:pathMatch(.*)*", redirect: {name: "home", params: {env: "dev"}}},
],
}) |
@PeterAlfredLee thank you, it works indeed, as suggested in the warning message. But I think it is hiding the real issue because in that case, no warning should be displayed. |
Hi @narwajea . I think the warning is useful here. A In short words, a route like this: { path: "/", redirect: 'dev' } will not generate any warnings. This is complicated. Hope this helps. Maybe we can improve the warning message here. Maybe we can use a warning like |
Version
4.0.8
Reproduction link
https://jsfiddle.net/cwbe2yq3/
Steps to reproduce
Open JSFiddle
Open console
Click on "Home" link
What is expected?
No warning in console
What is actually happening?
Warning in console:
[Vue Router warn]: Path "/dev" was passed with params but they will be ignored. Use a named route alongside params instead.
The text was updated successfully, but these errors were encountered: