mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
fix(upload): fix upload list remove animation incorrect (#1379)
fix upload list remove animation incorrect fix #1376
This commit is contained in:
parent
c8d1f8ad10
commit
f7ed9ca68c
@ -9,8 +9,8 @@
|
||||
name="el-list"
|
||||
>
|
||||
<li
|
||||
v-for="(file, idx) in files"
|
||||
:key="idx"
|
||||
v-for="file in files"
|
||||
:key="file"
|
||||
:class="['el-upload-list__item', 'is-' + file.status, focusing ? 'focusing' : '']"
|
||||
tabindex="0"
|
||||
@keydown.delete="!disabled && handleRemove($event, file)"
|
||||
|
Loading…
Reference in New Issue
Block a user