I'm trying to do something like this:
<div v-for="r in rentals"> <a bind-href="'/job/'r.id"> {{ r.job_title }} </a> </div>
I can't figure out how to add the value of r.id to the end of the href attribute so that I can make an API call. Any suggestions?
r.id
href
You need to use v-bind: or its alias :. For example,
v-bind:
:
<a v-bind:href="'/job/'+ r.id">
or
<a :href="'/job/' + r.id">
2.1m questions
2.1m answers
60 comments
57.0k users