I have v-for working correctly for a url path. Now, I would like to combine the url path with the query string to the routerlink tag. The query string is the date from the v-for item. I would like to dynamically pass query string to routerlink. If this not possible, is there a way to dynamically populate the hyperlink query string using v-for?
<table v-if="loadSpinner === 'hide'" class="table table-striped text-center" style="margin-bottom: ; 100px" >
<thead>
<tr>
<th scope="col">Date</th>
<th scope="col">Total</th>
</tr>
</thead>
<tbody>
<tr v-for="item in jsonData" :key="item.date">
<td><RouterLink to="/calendar/productList?dt={{item.date}}" > {{ item.date }} </RouterLink></td>
<td><RouterLink to="/calendar/productList?dt={{item.date}}" > {{ item.total }} </RouterLink></td>
</tr>
</tbody>
</table>