vue-router's router-link with actual refresh?
Okay, I didn't know that a normal <a>
tag works as my expectation if history mode is used, so I ended up doing this:
<a :href="$router.resolve({name: 'HelloWorld'}).href">link</a>
or maybe just:
<a href="/">link</a>