fix(agent): 修复智能代理日志与概览组件中的选项循环渲染问题

- 在 el-option组件中添加了 :key 属性,以确保列表渲染的稳定性- 此修改可以提高组件的性能,并避免潜在的渲染错误
This commit is contained in:
陈昱达
2025-05-22 10:44:24 +08:00
parent 92c6db8274
commit 607802811c

View File

@@ -10,6 +10,7 @@
v-for="item in options"
:value="item.value"
:label="item.label"
:key="item.value"
></el-option>
</el-select>
<div