[Vuejs]-Vue.js: How to open external links in already opened tab?

0👍

The body you send to your user should be in HTML and it should use the default target by the a tag (_self).

For example

<a href="https://app.com/#/user/123456789" target="_self"></a>

or

<a href="https://app.com/#/user/123456789"></a>

Leave a comment