I have a set of computed data that each one of them returns a url -
computed:{
facebookUrl(){return "facebook.com"},
twitterUrl(){return "twitter.com"}
}
in the template I have a v-for loop and in each one of the items I have a 'name' (name:"facebook",name:"twitter")
now I wand to bind the computed url for each of them like this (I tried several ways, all end the same) -
:href="`${item.name}Url`"
but instead of getting the computed value I get only the strings...
and yes, I know I can use a method with param to return the value...