2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-16 09:10:33 +03:00

feat: add open & close events (#1101)

This commit is contained in:
Jeff Sagal
2020-03-12 20:46:08 -07:00
committed by GitHub
parent bb3f28478f
commit e6d0da6d52
4 changed files with 100 additions and 0 deletions
+4
View File
@@ -619,6 +619,10 @@
*/
multiple() {
this.clearSelection()
},
open(isOpen) {
this.$emit(isOpen ? 'open' : 'close');
}
},