fix: vItem.key 类型 Key (含 bigint) 转为 String 兼容 Vue :key

This commit is contained in:
2026-07-11 15:10:25 +08:00
parent 16175a4635
commit 4602ec5979
+1 -1
View File
@@ -615,7 +615,7 @@ onUnmounted(() => {
> >
<div <div
v-for="vItem in virtualizer.getVirtualItems()" v-for="vItem in virtualizer.getVirtualItems()"
:key="vItem.key" :key="String(vItem.key)"
:style="{ :style="{
position: 'absolute', position: 'absolute',
top: 0, top: 0,