fix(select): fix select multi mode rendering (#941)

- Fix select multi mode not rendering input box issue
This commit is contained in:
jeremywu 2020-12-10 11:17:10 +08:00 committed by GitHub
parent ab39d290b7
commit 97dd66b172
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -154,6 +154,8 @@ export const useSelect = (props, states: States, ctx) => {
if (!isEqual(val, oldVal)) {
elFormItem.formItemMitt?.emit('el.form.change', val)
}
}, {
flush: 'post',
})
watch(() => states.visible, val => {