vue3使用router传值时取不到值的解决方法

使用state方法:

// 跳转首页
let gotoHome = (data) => {
  router.replace({
    path: '/student_home',
    state: { studentData: data }
  })
}
 
// 首页
if (typeof history.state.studentData != undefined) {
  let value = history.state.studentData
}
 

 

posted on 2024-11-02 23:35  落子戏  阅读(53)  评论(0编辑  收藏  举报

导航