vue-router 在新窗口打开页面的功能

Problem:在vue项目中突然接收到一个需要新开页面的功能

通过看了vue-router,实现这个功能也是可以,详情如下:

<router-link
        target="_blank"
        :to="{ path:'/details', query: { id:'1' } }">详情</router-link>

2.通过Function进行导航

methods: {
  goDetails (id) {
      const { href } = this.$router.resolve({
        path: `/details`,
        params: {
          id: id
        }
      });
      window.open(href, "_blank");
  } 
}