diff --git a/src/components/select/select.vue b/src/components/select/select.vue
index 35222ae08..c7ea058b3 100644
--- a/src/components/select/select.vue
+++ b/src/components/select/select.vue
@@ -66,7 +66,7 @@
:transfer="transfer"
transition-name="transition-drop"
>
-
+
item.proxy.isShow);
- return (options.length === 0 || !filterOptions) && (!remote || (remote && !loading)) && !hideNotFound;
+ return (options.length === 0 || !filterOptions) &&
+ (!remote || (remote && !loading)) &&
+ (!allowCreate || (allowCreate && !query)) &&
+ !hideNotFound;
},
publicValue(){
return this.multiple ? this.values.map(option => option.value) : (this.values[0] || {}).value;