vue多页面跳转不是单页面跳转

/**

  *  查看详情

  */

    me (row) {

      this.id = row.id

      let routeData = this.$router.resolve({

        path: '/manage/story-tabs',

        query: {

          projectId: this.projectId,

          id: this.id,

          type: '01',

          showStoryDetail: '01'

        }

      });

      window.open(routeData.href, '_blank')

    },

你可能感兴趣的:(vue多页面跳转不是单页面跳转)