[Vuejs]-How to redirect to the page on another domain with 'a' tag in Vue js project?

2👍

You need to specify the protocol if you are attempting to trying to load an external URL.

<p>Right click and open links in a new tab.</p>
<a href="facebook.com">Internal - Will throw 404 - facebook.com</a><br>
<a href="www.facebook.com">Internal - Will throw 404 - www.facebook.com</a><br>
<a href="https://facebook.com">External - https://facebook.com</a><br>

You can read more about it here: Why does an anchor tag's href values need http:// preprended to the URL?

Leave a comment