We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 934ff84 + 143b598 commit ffdf552Copy full SHA for ffdf552
frontend/src/components/DbFilterinput.vue
@@ -5,7 +5,8 @@
5
<el-select v-model="formInline.sex" clearable placeholder="select sex"
6
v-on:visible-change="selectDemo">
7
<el-option
8
- v-for="item in type_options"
+ v-for="(item, index) in type_options"
9
+ :key = "index"
10
:label="item.label"
11
:value="item.value">
12
</el-option>
@@ -81,4 +82,4 @@
81
82
}
83
84
-</script>
85
+</script>
0 commit comments