Browse Source

Merge remote-tracking branch 'origin/newVersion' into test

zhouna 5 năm trước cách đây
mục cha
commit
db5626008f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/common/OptionInp.vue

+ 1 - 1
src/common/OptionInp.vue

@@ -104,7 +104,7 @@ import $ from 'jquery';
 
       },
       handleCli(e){
-        if(!this.select&&this.txt.match(/\S/g)){//已选中后点击输入框不取消选中
+        if(!this.select&&(this.txt||"").match(/\S/g)){//已选中后点击输入框不取消选中
           this.$emit("handleSelect")
         }
       }