Linux 拨号vps windows公众号手机端

vue中路由跳转的方式有哪些

lewis 6年前 (2019-03-09) 阅读数 10 #程序编程
文章标签 vue路由跳转

vue中实现路由跳转的方式有:1.通过router-link标签跳转;2.通过this.$router.push()事件跳转;3.通过this.$router.go(n)事件跳转;

vue中实现路由跳转的方式有以下几种

1.通过router-link标签跳转

//配置路由

path:'/user/:id'

<router-link:to="'/user/'+this.id"><router-link/>

//接收参数

this.$route.params.id

2.通过this.$router.push()事件跳转

1)跳转字符串

this.$router.push('/home')

2)跳转对象

this.$router.push({path:'/home'})

3.通过this.$router.go(n)事件跳转

this.$router.go(1)

//后退一步记录

this.$router.go(-1)

//前进三步记录

this.$router.go(3)


版权声明

本文仅代表作者观点,不代表米安网络立场。

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

热门