1、vue表格里面显示出图片 <el-table-column prop="img" label="图片"> <template v-slot="scope"> <el-image v-if="scope.row.img" style="width: 50px" :src="scope.row.img" :preview-src-list="[scope.row.img]"></el-image> </template> </el-table-column>
2、表格超出的字可以隐藏show-overflow-tooltip
<el-table-column prop="name" label="名称" show-overflow-tooltip></el-table-column>
3、表格内容高亮显示
例如:
<template v-slot="scope"> <el-tag type="info" v-if="scope.row.status === '待审核'">待审核</el-tag> </template>