Merge pull request #1946 from neo-6/neo-6-patch-1
解决Invalid vnode type when creating vnode的警告问题
This commit is contained in:
commit
80c54ad890
|
@ -9,7 +9,7 @@
|
|||
>
|
||||
<template #prefix>
|
||||
<el-icon>
|
||||
<component :is="value" />
|
||||
<component v-if="value" :is="value" />
|
||||
</el-icon>
|
||||
</template>
|
||||
<el-option
|
||||
|
@ -21,7 +21,7 @@
|
|||
>
|
||||
<span class="gva-icon" style="padding: 3px 0 0" :class="item.label">
|
||||
<el-icon>
|
||||
<component :is="item.label" />
|
||||
<component v-if="item.label" :is="item.label" />
|
||||
</el-icon>
|
||||
</span>
|
||||
<span style="text-align: left">{{ item.key }}</span>
|
||||
|
|
|
@ -684,7 +684,7 @@
|
|||
<el-upload
|
||||
class="flex items-center"
|
||||
:before-upload="importJson"
|
||||
show-file-list="false"
|
||||
:show-file-list="false"
|
||||
accept=".json"
|
||||
>
|
||||
<el-button type="primary" class="mx-2" :disabled="isAdd"
|
||||
|
|
|
@ -310,8 +310,8 @@
|
|||
<el-form-item label="字符长度">
|
||||
<el-input-number
|
||||
v-model="config.captcha['key-long']"
|
||||
min="4"
|
||||
max="6"
|
||||
:min="4"
|
||||
:max="6"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="图片宽度">
|
||||
|
|
Loading…
Reference in New Issue