I need to run a method before NuxtLink navigates to a route. In the method I want to decide whether to release it or not. Like in vanilla JS:
<a href="some-page" onclick="return count > 10 ? true : false">Done</a>
I know how to stop NuxtLink and run the method instead, but how do I pause it, make some actions and decide whether to release it or not?