Current section

Files

Jump to
moon assets js hooks combobox.js
Raw

assets/js/hooks/combobox.js

export default {
mounted() {
this.input = this.el.querySelector('.moon-comboinput');
this.dropdown = this.el.children[1];
},
updated() {
if (this.input === document.activeElement) {
this.dropdown.classList.remove('hidden');
}
}
}