Vue跳转在新窗口打开

Vue是单页面应用,想要跳转在新开窗口打开需要配置

    handleHelp () {
      const {href} = this.$router.resolve({
        path: '/pdf',
        query: {
          pdf: JSON.stringify(this.pdf)
        }
      })
      window.open(href, '_blank')
    }

猜你喜欢

转载自blog.csdn.net/hani_wen/article/details/82629642