Skip to content

Commit ffdf552

Browse files
authored
Merge pull request #54 from 704826318/master
resolve frontend warning
2 parents 934ff84 + 143b598 commit ffdf552

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

frontend/src/components/DbFilterinput.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
<el-select v-model="formInline.sex" clearable placeholder="select sex"
66
v-on:visible-change="selectDemo">
77
<el-option
8-
v-for="item in type_options"
8+
v-for="(item, index) in type_options"
9+
:key = "index"
910
:label="item.label"
1011
:value="item.value">
1112
</el-option>
@@ -81,4 +82,4 @@
8182
}
8283
8384
84-
</script>
85+
</script>

0 commit comments

Comments
 (0)