在elementui中的table加入可跳转的链接

 <el-table-column label="域名"
        min-width="250">
        <template slot-scope="scope">
          <a :href="'http://'+scope.row.Address"
            target="_blank"
            class="buttonText">{{scope.row.Address}}</a>
        </template>
      </el-table-column>

猜你喜欢

转载自blog.csdn.net/caimaomaocai/article/details/81334641