-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Description
- I have searched the issues of this repository and believe that this is not a duplicate.
Version
1.6.5
Environment
win10, chrome 84
Reproduction link
Steps to reproduce
运行以下代码, 然后展开任意一列
Delete
{{ record.description }}
<script> const columns = [ { title: 'Name', dataIndex: 'name', key: 'name' }, { title: 'Age', dataIndex: 'age', key: 'age' }, { title: 'Address', dataIndex: 'address', key: 'address' }, { title: 'Action', dataIndex: '', key: 'x', scopedSlots: { customRender: 'action' } }, ];const data = [
{
key: 1,
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park',
description: 'My name is John Brown, I am 32 years old, living in New York No. 1 Lake Park.',
},
{
key: 2,
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park',
description: 'My name is Jim Green, I am 42 years old, living in London No. 1 Lake Park.',
},
{
key: 3,
name: 'Joe Black',
age: 32,
address: 'Sidney No. 1 Lake Park',
description: 'My name is Joe Black, I am 32 years old, living in Sidney No. 1 Lake Park.',
},
];
export default {
data() {
return {
data,
columns,
rowSelection:{fixed:true,selectedRowKeys:[],type:'checkbox'}
};
},
};
</script>
What is expected?
两者可以联合正常使用
What is actually happening?
layout错乱, 在table fixed area也渲染了expandedRowRender slot的内容