在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
一、this.$router.push 说明:跳转到指定URL,向history栈添加一个新的记录,点击后退会返回至上一个页面 使用: 1 this.$router.push('/index') 2 this.$router.push({path:'/index'}) 3 this.$router.push({path:'/index',query:{name: '123'}}) 4 this.$router.push({name:'index',params:{name:'123'}})
二、this.$router.replace 说明:跳转到指定URL,替换history栈中最后一个记录,点击后退会返回至上上一个页面 使用:同push
三、this.$router.go(n) 说明:类似window.history.go(n),向前或向后跳转n个页面,n可正(先后跳转)可负(向前跳转) 使用: this.$router.go(1) //类似history.forward() this.$router.go(-1) //类似history.back()
说明:跳转到指定URL,向history栈添加一个新的记录,点击后退会返回至上一个页面 使用: 1 this.$router.push('/index') 2 this.$router.push({path:'/index'}) 3 this.$router.push({path:'/index',query:{name: '123'}}) 4 this.$router.push({name:'index',params:{name:'123'}})
二、this.$router.replace 说明:跳转到指定URL,替换history栈中最后一个记录,点击后退会返回至上上一个页面 使用:同push
三、this.$router.go(n) 说明:类似window.history.go(n),向前或向后跳转n个页面,n可正(先后跳转)可负(向前跳转) 使用: this.$router.go(1) //类似history.forward() this.$router.go(-1) //类似history.back()
|
请发表评论