Vue 隐藏地址栏参数

路由中使用state传递参数,参数就不会显示在地址栏中

router.push({
          name: 'home',
          state: { id: info.id, name: info.name }
        })

使用window.history.state获取参数

mounted() {
    this.userInfo = window.history.state
  },

 

posted @ 2024-09-04 10:46  流年sugar  阅读(160)  评论(0编辑  收藏  举报