fix: descriptions not re-rendered when slots is updated (#2275)

This commit is contained in:
msidolphin 2021-06-20 12:21:11 +08:00 committed by Herrington Darkholme
parent 9bce9ea2e7
commit f91f709cff
2 changed files with 27 additions and 4 deletions

View File

@ -95,4 +95,27 @@ describe('Descriptions.vue', () => {
expect(wrapper.findAll('td')[1].element.getAttribute('colSpan')).toEqual('2') expect(wrapper.findAll('td')[1].element.getAttribute('colSpan')).toEqual('2')
}) })
test('re-rendered when slots is updated', async () => {
const CHANGE_VALUE = 'company'
const wrapper = _mount(`
<el-descriptions v-for="(remark,index) in remarks" :key="index" :title="remark">
<el-descriptions-item label="remark">
<el-tag size="small">{{remark}}</el-tag>
</el-descriptions-item>
</el-descriptions>
<button @click="onClick">click</button>
`, () => {
return {
remarks: ['school', 'hospital'],
}
}, {
onClick () {
this.remarks[0] = CHANGE_VALUE
},
})
wrapper.find('button').trigger('click')
await nextTick()
expect(wrapper.find('el-tag').text()).toBe(CHANGE_VALUE)
})
}) })

View File

@ -12,7 +12,7 @@
<div class="el-descriptions__body"> <div class="el-descriptions__body">
<table :class="[{'is-bordered': border}, descriptionsSize ? `el-descriptions--${descriptionsSize}` : '']"> <table :class="[{'is-bordered': border}, descriptionsSize ? `el-descriptions--${descriptionsSize}` : '']">
<tbody> <tbody>
<template v-for="(row, index) in rows" :key="index"> <template v-for="(row, index) in getRows()" :key="index">
<el-descriptions-row :row="row" /> <el-descriptions-row :row="row" />
</template> </template>
</tbody> </tbody>
@ -96,7 +96,7 @@ export default defineComponent({
return node return node
} }
const rows = computed(() => { const getRows = () => {
const children = flattedChildren(slots.default?.()).filter(node => node?.type?.name === 'ElDescriptionsItem') const children = flattedChildren(slots.default?.()).filter(node => node?.type?.name === 'ElDescriptionsItem')
const rows = [] const rows = []
let temp = [] let temp = []
@ -123,11 +123,11 @@ export default defineComponent({
}) })
return rows return rows
}) }
return { return {
descriptionsSize, descriptionsSize,
rows, getRows,
} }
}, },
}) })