[Vuejs]-How can I make the active tab highlighted until I change the tab for another?

0👍

vue-router automatically adds two classes to the active <router-link> component.

.router-link-active and .router-link-exact-active

You can use those classes to style your links.

This is a comprehensive answer that covers how/when these classes are applied.

Leave a comment