mirror of
http://112.124.100.131/ebiz-ai/ebiz-ai-knowledge-manage.git
synced 2025-12-08 18:36:51 +08:00
fix(agent): 修复智能代理日志与概览组件中的选项循环渲染问题
- 在 el-option组件中添加了 :key 属性,以确保列表渲染的稳定性- 此修改可以提高组件的性能,并避免潜在的渲染错误
This commit is contained in:
@@ -10,6 +10,7 @@
|
|||||||
v-for="item in options"
|
v-for="item in options"
|
||||||
:value="item.value"
|
:value="item.value"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
|
:key="item.value"
|
||||||
></el-option>
|
></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
<div
|
<div
|
||||||
|
|||||||
Reference in New Issue
Block a user