雾观远山

博客园 首页 新随笔 联系 订阅 管理

 

 

 

Ⅰ、 paramas传参


①index.js定义动态路由的格式


const routes =[
{path:"/user/:id/:name/:age",component:User}//动态路由的配置
]

 

 


②app.vue传参要格式对应

<div>
<router-link to="/user/1/lsq/18">&nbsp &nbsp user1</router-link>
<router-link to="/user/2/zsj/19">&nbsp &nbsp user2</router-link>
<router-link to="/user/3/zzr/18">&nbsp &nbsp user3</router-link>
</div>

③app.vue 接受

<template>
// 当前路由信息对象的 params.id

<h1>id {{$route.params.id}}</h1>
<h1>姓名{{$route.params.name}}</h1>
<h1>年龄{{$route.params.age}}</h1>
</template>

 

posted on 2022-05-12 00:12  雾观远山  阅读(124)  评论(0编辑  收藏  举报