this.$router.push跳转
时间: 2023-11-21 16:54:45 浏览: 89
Vue this.$router.push(参数)实现页面跳转操作
this.$router.push是Vue Router提供的方法之一,用于在Vue组件中进行编程式导航,即通过JS代码实现页面的跳转。它可以跳转到指定的URL,并在history栈中添加一个记录,点击后退会返回上一个页面。除了字符串类型的URL,它还可以接受一个对象作为参数,用于更加灵活地配置路由跳转。此外,还有其他几种Vue Router提供的跳转方法,如this.$router.replace和this.$router.go。
阅读全文