this.$router.push({ path: '/application' })
时间: 2023-08-30 11:07:27 浏览: 111
Vue this.$router.push(参数)实现页面跳转操作
这是Vue.js中使用Vue Router进行页面跳转的代码,它会将路由地址跳转到'/application'页面。该代码会在Vue组件中使用,$router是Vue Router提供的一个全局变量,可以通过this.$router访问。其中push方法是Vue Router提供的路由跳转方法之一,它将新路由推到历史记录栈,导航到该路由。
阅读全文