diff --git a/src/components/dropdown/Dropdown.vue b/src/components/dropdown/Dropdown.vue index 1f9836cc2..6e9b582b3 100644 --- a/src/components/dropdown/Dropdown.vue +++ b/src/components/dropdown/Dropdown.vue @@ -67,6 +67,11 @@ export default { overlayVisible: false }; }, + outsideClickListener: null, + searchTimeout: null, + currentSearchChar: null, + previousSearchChar: null, + searchValue: null, beforeDestroy() { this.unbindOutsideClickListener(); }, @@ -75,11 +80,6 @@ export default { this.alignOverlay(); } }, - outsideClickListener: null, - searchTimeout: null, - currentSearchChar: null, - previousSearchChar: null, - searchValue: null, methods: { getOptionLabel(option) { return ObjectUtils.resolveFieldData(option, this.optionLabel);