Vue 隐藏地址栏参数
路由中使用state传递参数,参数就不会显示在地址栏中
router.push({ name: 'home', state: { id: info.id, name: info.name } })
使用window.history.state获取参数
mounted() { this.userInfo = window.history.state },
路由中使用state传递参数,参数就不会显示在地址栏中
router.push({ name: 'home', state: { id: info.id, name: info.name } })
使用window.history.state获取参数
mounted() { this.userInfo = window.history.state },