简单记一下 Vue 在新标签页中打开新页面
this.$router.push({
path: '/new-page',
target: '_blank',
});
let routeUrl = this.$router.resolve({
path: '/share',
query: { id: 96 },
});
window.open(routeUrl.href, '_blank');
简单记一下 Vue 在新标签页中打开新页面
this.$router.push({
path: '/new-page',
target: '_blank',
});
let routeUrl = this.$router.resolve({
path: '/share',
query: { id: 96 },
});
window.open(routeUrl.href, '_blank');