elementui 表格中字段数据实现跳转

<template slot-scope="scope">    
             <a :href="'http://xxxxxx/gerrit/#/c/'+scope.row.GerritID+'/'"
            target="_blank"
            class="buttonText">{{scope.row.GerritID}}</a>
         </template>

参数数明:

  1. scope.row 获取当前行记录
  2. {{scope.row.GerritID}} 表示点击当前行的GerritID实现跳转

你可能感兴趣的:(element-ui,elementui,python)