vue 跳转打开新窗口

1 const { href } = this.$router.resolve({
2     name: "router-name",
3     query: {
4         id: 1
5     }
6 });
7 window.open(href, '_blank');
原文地址:https://www.cnblogs.com/dreamstartplace/p/13045437.html