<router-link to="/detail" tag="button">
跳转到detail
</router-link>
//传变量
<router-link :to="'/detail/'+item.id" tag="button">
跳转到detail
</router-link>
//配置
{
path: '/detail/:id',
name: 'detail',
component: () => import('../views/Detail.vue')
}
//使用
this.$route.params