[Vuejs]-Href pdf file url is not found when click on it

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...

Leave a comment