feat: improve dashboard queries to make page opening brisker (#410)

This commit is contained in:
Fine0830
2024-08-22 16:47:50 +08:00
committed by GitHub
parent d9f819d143
commit ae63538baf
7 changed files with 221 additions and 104 deletions

View File

@@ -28,8 +28,8 @@ limitations under the License. -->
:filterable="filterable"
>
<el-option
v-for="item in options"
:key="item.value || ''"
v-for="(item, index) in options"
:key="`${item.value}${index}`"
:label="item.label || ''"
:value="item.value || ''"
:disabled="item.disabled || false"