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
}