Min's blog

I choose to see the beauties in the world.

导航

vue打开新窗口

Posted on 2019-09-17 10:56  Min77  阅读(257)  评论(0编辑  收藏  举报

1. <router-link tag="a" target="_blank" :to="{name:'detail',query:{goodsId:'id'}}">00000</router-link>

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