Here is my html code :
<button type="button" class="btn btn-default btn-block" v-for="x in filterName" v-on:click="passuserid(x.rsid)"> <router-link v-bind:to="'/combo/'"><b>{{x.last_name}}</b> {{x.first_name}}
</router-link></button>
&#13;
以下是路线代码:
export const routes =[
{ path:'', component: ContentArea},
{ path:'/combo/', component: Comparison }
];
&#13;
答案 0 :(得分:3)
尝试使用li而不是按钮。
<li class="btn btn-default btn-block" v-for="x in filterName" v-on:click="passuserid(x.rsid)">
<router-link to="/combo">{{x.last_name}}</b> {{x.first_name}}</router-link>
</li>
&#13;