赞
踩
业务需求默认选中表格的第一行
<el-table
ref="interfaceTable"
v-loading="listLoading"
:data="list"
element-loading-text="Loading"
border
fit
highlight-current-row
>
<el-table-column label="编码" fixed="left" width="100" align="center">
<template slot-scope="scope">
{{ scope.row.serviceCode }}
</template>
</el-table-column>
</el-table>
通过监听,在表格的list值,加载完以后,才能获取到表格。
注意:list是表格的列表值。interfaceTable是表格指向
watch: {
list: function() {
this.$nextTick(function() {
this.$refs.interfaceTable.setCurrentRow(this.list[0])
})
}
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。