2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-07 07:12:23 +03:00

Merge pull request #167 from sagalbot/mutableloading

Mutableloading
This commit is contained in:
Jeff
2017-03-22 18:35:43 -07:00
committed by GitHub
5 changed files with 47 additions and 5 deletions
+2 -3
View File
@@ -489,8 +489,7 @@
search: '',
open: false,
mutableValue: null,
mutableOptions: [],
mutableLoading: false
mutableOptions: []
}
},
@@ -766,7 +765,7 @@
* @return {Boolean} True if open
*/
dropdownOpen() {
return this.noDrop ? false : this.open
return this.noDrop ? false : this.open && !this.mutableLoading
},
/**