VUE打开新页面方法
我们知道,我们可以通过<a href='***' target='_blank'>*****</a>
或window.open(strUrl, strWindowName, [strWindowFeatures])
来打开新页面,那vue又如何实现打开新页面呢?参考下面代码;
const routeData = this.$router.resolve({
path: '/manager/index',
query:{
type: "view",
modelId: this.currentNodekey,
readOnly: true,
isFullScreen:true
}
});
window.open(routeData.href, "_blank");