VUE-router-跳转 Vue 爬坑之路(三)—— 使用 vue-router 跳转页面

跳转的

// 字符串
this.$router.push('/home/first')

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

// 命名的路由
this.$router.push({ name: 'home', params: { userId: wise }})

参考文档

Vue 爬坑之路(三)—— 使用 vue-router 跳转页面

猜你喜欢

转载自www.cnblogs.com/zytcomeon/p/13202576.html