You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List is rendered as expected. Issue is with router.
Vue-router states exact prop default value is false. But vue-material makes it true unless specified like I did :exact="false"
So, we are inverting vue-router natural behaviour. Is my observation correct or am I doing something wrong?
After settting the :exact="false" prop I noticed that the item was not highlighted as it should.
I noticed that "router-link-exact-active" and "router-link-active" class were not added anymore.
The way I found to keep it active is by adding :active-class="'md-selected'" as vue-router states
Again, is this correct ?
The text was updated successfully, but these errors were encountered:
Hi,
I am rendering a List:
List is rendered as expected. Issue is with router.
Vue-router states exact prop default value is false. But vue-material makes it true unless specified like I did :exact="false"
So, we are inverting vue-router natural behaviour. Is my observation correct or am I doing something wrong?
After settting the :exact="false" prop I noticed that the item was not highlighted as it should.
I noticed that "router-link-exact-active" and "router-link-active" class were not added anymore.
The way I found to keep it active is by adding :active-class="'md-selected'" as vue-router states
Again, is this correct ?
The text was updated successfully, but these errors were encountered: