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