在el-table中
<el-table-column :show-overflow-tooltip="true">
</el-table-column>
然后鼠标放上去还有tooltip
通用
设置过滤器
filters: {
ellipsis(value) {
if (!value) return "";
if (value.length > 30) {
return value.slice(0, 30) + "...";
}
return value;
}
},
使用过滤器
<el-table-column label="题干" width="600">
<template slot-scope="scope">
<span>{{scope.row.content | ellipsis}}</span>
</template>
</el-table-column>
© 版权声明
THE END
暂无评论内容