未加超链接
<el-table-column prop="urlH5" label="H5"></el-table-column>
加了超链接
<el-table-column prop="urlH5" label="H5"> <template slot-scope="scope"> <a :href="scope.row.urlH5" target="_blank" class="buttonText">{{scope.row.urlH5}}</a> </template> </el-table-column>