vue-router 如何在新窗口打开页面

let routeUrl = this.$router.resolve({
     path: "/share",
     query: {id:96}
});
window.open(routeUrl .href, '_blank');
相关推荐