vue-router的基本使用 发表于 2020-04-21 更新于 2024-06-20 分类于 未分类 Disqus: 路由跳转12345678// 字符串this.$router.push('/home/first')// 对象this.$router.push({ path: '/home/first' })// 命名的路由this.$router.push({ name: 'home', params: { userId: wise }}) 传参query123http://192.168.1.12:8080/#/detail/?id=123let id = this.$route.query.id params12345678910{ path: '/detail/:id/', name: 'detail', component: detail, meta: { title: '详情' }}let id = this.$route.params.id 监听路由变化12345watch:{ $route(to,from){ console.log(to.path); }} 坚持技术分享,您的支持将鼓励我继续创作! 打赏 微信支付 支付宝 欢迎关注我的其它发布渠道 Twitter WeChat