码迷,mamicode.com
首页 > 其他好文 > 详细

[vue]传递参数与重定向

时间:2020-02-19 05:37:58      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:index   router   default   参数   main   lin   传递   log   def   

传递参数与重定向

Main.vue

<!--name:对应index.js中router的name, params:传参-->
<router-link :to="{name: 'UserProfile', params: {id: 1}}">个人信息</router-link>

index.js的router

{
  path: '/user/Profile/:id',
  name: 'UserProfile',
  component: UserProfile
},

Profile.vue获取并展示参数

{{$route.params.id}}//template中所有的元素必须包含在标签中

也可以通过props来传递参数

index.js的router

path: '/user/Profile/:id',
name: 'UserProfile',
component: UserProfile,
props: true  //允许props传参

Profile.vue直接用{{id}}即可

{{id}}

重定向的方法

router路由

{
  path: '/back',
  redirect: '/main'
},
<router-link to="/back">返回首页</router-link>

登录用户

Login.vue

this.$router.push("/main/"+this.form.username);

router

path: '/main/:name',
props: true,
component: Main,

main.vue

<script>
  export default {
    props: ['name'],
    name: "Main"
  }
</script>

[vue]传递参数与重定向

标签:index   router   default   参数   main   lin   传递   log   def   

原文地址:https://www.cnblogs.com/pinked/p/12329626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!