Resolve warn tip in ThemeList.vue

pull/9/head
johnniang 2019-04-10 13:16:11 +08:00
parent 9168146c9f
commit fd388444a9
1 changed files with 2 additions and 2 deletions

View File

@ -126,8 +126,8 @@
v-else-if="item.type == 'select'"
>
<a-select-option
v-for="(option, index3) in item.options"
:key="index3"
v-for="option in item.options"
:key="option.value"
:value="option.value"
>{{ option.label }}</a-select-option>
</a-select>