-
-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Option to match exactPath that ignores query parameters and/or hashes #2040
Option to match exactPath that ignores query parameters and/or hashes #2040
Comments
any news about that ? I have the same problem here |
The api around adding active classes is starting to get bloated so I will take more time to think about this and proposals are welcome too For the moment, adding a |
The RFC is up at vuejs/rfcs#35 |
I created a new RFC, way simpler that eliminates the problem by design, but is also a breaking change: vuejs/rfcs#136 I would appreciate some feedback! |
Now that vuejs/rfcs#136 is merged and implemented on v4, we can add a workaround for v3: A prop named <template>
<router-link :to="link" v-slot="{ route, href, navigate }">
<a
:href="href"
@click="navigate"
:class="route.path === $route.path ? 'router-link-active' : ''"
:aria-current="route.path === $route.path && 'page'"
><slot></slot
></a>
</router-link>
<template> More info about the Let me know what you think about this, specifically about the |
I still having issues with 'router-link-exact-active' when dealing with child route and having a query parameter. Does anyone have founded a solution for that ? Thanks |
Details of the still-open issue are found here: vuejs/vue-router#2040 I used the exact hack recommended in there even though I hate how it looks. At least it's functioning correctly now.
This bug still persists in Vue router 4.0.11 |
cc: @posva some problem 4.0.12 |
still having issue with "exact". in App component i try to make a paginated fullpage scroll and problem is about vue router: all links are active at the same time, no matter about hash anchors, so maybe anyone have a solution? PS sorry for my english :) |
What problem does this feature solve?
Use case
I have a nested view of pages that looks like this:
I need to highlight the current selected page (and only 1 item can be highlighted). So if the user is on
/pages/foo
, onlyFoo
should be highlighted. If the user is on/pages/foo/bar
, onlyBar
should be highlighted. However, this page also has pagination that when selecting the 2nd page, navigates to/pages/foo/bar?page=2
.Context
vue-router currently has the option to do an
exact
match of the path upon which the router will automatically add the class specified in thelinkExactActiveClass
option (which isrouter-link-exact-active
by default).In the above example, the exact match will match
/pages/foo/bar
but will not match/pages/foo/bar?page=2
since it includes the query params in the comparison. However, if I don't use theexact
match then bothFoo
andBar
will be both shown asactive
.My solution has been to add a custom check to match only the path but would be nice for
vue-router
to have the option by default.This request is for the ability to do an exact match but only on the path, not the whole URL, i.e. the
exactPath
match will ignore any query params in the URL.What does the proposed API look like?
The current implementation of
exact
uses theexact
directive to add therouter-link-exact-active
class.A proposed solution would be to add the
exact-path
directive which will in term add therouter-link-exact-path-active
class.The text was updated successfully, but these errors were encountered: