ElementUI之el-table标题列中显示el-tooltip
在ElementUI的el-table
组件中,可以通过在el-table-column
的label
属性中使用el-tooltip
组件来实现标题列的hover显示提示信息。以下是一个简单的示例代码:
<template>
<el-table :data="tableData" style="width: 100%">
<el-table-column label="日期">
<template slot-scope="scope">
{{ scope.row.date }}
</template>
</el-table-column>
<el-table-column label="状态" width="100">
<template slot-scope="scope">
<el-tag :type="scope.row.status | statusFilter">{{ scope.row.status }}</el-tag>
</template>
</el-table-column>
<el-table-column label="名称" width="150">
<template slot-scope="scope">
<el-tooltip class="item" effect="dark" placement="top-start">
<div slot="content">这是一段内容, 这是一段内容, 这是一段内容</div>
<div>{{ scope.row.name }}</div>
</el-tooltip>
</template>
</el-table-column>
</el-table>
</template>
<script>
export default {
data() {
return {
tableData: [{
date: '2016-05-02',
name: '王小虎',
status: 'pending'
}, {
date: '2016-05-04',
name: '李小虎',
status: 'success'
}, {
date: '2016-05-01',
name: '赵小虎',
status: 'fail'
}]
}
},
filters: {
statusFilter(status) {
const statusMap = {
success: 'success',
pending: 'gray',
fail: 'danger'
}
return statusMap[status]
}
}
}
</script>
在这个示例中,我们定义了一个包含三列的表格:日期、状态和名称。名称列使用了el-tooltip
组件,当用户将鼠标悬停在该单元格的内容上时,会显示提示信息。这是一个简单的实现标题列显示提示信息的方法。
评论已关闭