0👍
I faced the same issue. Try this method:
<router-link
custom
class="menu-item link hover--big"
:to="{ name: 'Reviews'}"
v-slot="{ isActive, navigate }"
@click="menuShowed = false">
<div
v-bind="$attrs"
:class="isActive ? activeClass : inactiveClass"
@click="navigate">
{{ get('menuReviews') }}
</div>
</router-link>
- [Vuejs]-PayPal Subscription Integration | Confusion with Capturing Funds
- [Vuejs]-How to integrate multiple Vue Js components into a legacy system?
Source:stackexchange.com