方法一--------------------------------------------------------------------------------------
<el-table-column prop="url" label="weburl">
<template slot-scope="scope">
<a :href= "tableData[scope.$index].url" :download="tableData[scope.$index].name" class="urlSize" target="_Blank">{{tableData[scope.$index].url}}</a>
</template>
方法二--------------------------------------------------------------------------------------
<el-table-column label="地址">
<template slot-scope="scope">
<div v-html="scope.row.address"></div>
</template>
</el-table-column>
-----------------------------------------------------------------------------------------------
<el-table-column label="操作">
<template slot-scope="scope">
<el-button size="mini"
@click="handleEdit(indexMethod(scope.$index), scope.row)">编辑</el-button>
<el-button size="mini" type="danger"
@click="handleDelete(indexMethod(scope.$index), scope.row)">删除</el-button>
</template>
</el-table-column>