I'm encountering a small issue that I can't seem to resolve.
Currently, I am on the following page:
http://example.com:8080/#/user/5ad142e8063ebb0537c5343e
There is a link on this page that points to the URL below:
http://example.com:8080/#/user/5ac00b02bb055f37b3fd2d07
However, when I click on the link, the URL changes but the content remains the same. The content does not reload unless I manually refresh the page.
The code for the link is as follows:
<router-link :to="{ name: 'User', params: { id: user.id }}">
<span class="glyphicon glyphicon-cog"></span> Profil
</router-link>
Is there a way to force the page to reload automatically?