[Vuejs]-How to pass query string in Vue.js

3👍

For that you can use v-bind attributes. For example:

<a v-bind:href="`/score_cards/new?tournament_name=${match.tournament_name}`">Upload Score Card</a>

Also you can use reduction :href instead of v-bind:href

Leave a comment