vue+element el-table选中状态如何回显
在Vue中使用Element UI的el-table
组件时,如果需要在表格中显示选中行的样式(即回显选中状态),可以通过highlight-current-row
属性来实现。当这个属性被设置为true
时,表格会高亮当前选中的行。
以下是一个简单的例子,展示如何在el-table
中使用highlight-current-row
属性:
<template>
<el-table
:data="tableData"
style="width: 100%"
highlight-current-row
@current-change="handleCurrentChange"
>
<el-table-column
prop="date"
label="日期"
width="180">
</el-table-column>
<el-table-column
prop="name"
label="姓名"
width="180">
</el-table-column>
<el-table-column
prop="address"
label="地址">
</el-table-column>
</el-table>
</template>
<script>
export default {
data() {
return {
tableData: [{
date: '2016-05-02',
name: '王小虎',
address: '上海市普陀区金沙江路 1518 弄'
}, {
date: '2016-05-04',
name: '李小虎',
address: '上海市普陀区金沙江路 1517 弄'
}, {
date: '2016-05-01',
name: '赵小虎',
address: '上海市普陀区金沙江路 1519 弄'
}, {
date: '2016-05-03',
name: '孙小虎',
address: '上海市普陀区金沙江路 1516 弄'
}],
currentRow: null
};
},
methods: {
handleCurrentChange(val) {
this.currentRow = val;
}
}
};
</script>
在这个例子中,highlight-current-row
属性被设置为true
,表格会在有行被选中时高亮显示。@current-change
事件用于监听当前选中行的变化,并通过handleCurrentChange
方法更新currentRow
数据,这样你可以在模板或计算属性中使用currentRow
来显示当前选中的行信息。
评论已关闭