欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue路由跳转打开新页面

程序员文章站 2022-05-14 09:27:10
...
  	handleLink(row) {
      let link = this.$router.resolve({
        path: '/user',
        query: {
          id: row.id
        }
      });
      window.open(link.href, '_blank')
    },
相关标签: vue.js