0๐
href
should not be a string, but a binding to a variable
Change this
<a href="myUrlVariable" target="_blank"></a>
to this
<a :href="myUrlVariable" target="_blank"></a>
๐
Is the url correct?
https:abc...
-> https://abc...
- [Vuejs]-How to send a POST request from a vanila JS application?
- [Vuejs]-Horizontal scroll not working when using Locomotive Scroll in Vue.js
Source:stackexchange.com