How pass variable to vue-router v-link
Shorter way would be:
<router-link
:to="`/applications/${currentApplicationId}`"
>Overview</router-link>
I used the following with vue-router 2.x:
<router-link :to="{path: '/applications/' + currentApplicationId}" class="nav-link">Overview</router-link>
More documentation can be found here.
the statement in v-link doesn't need “Mustache” syntax.
<li v-for="item in list"><a v-link="{ path: item.link }"></a></li>
you can see http://router.vuejs.org/en/index.html