aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/SearchInput.vue
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-06-04 22:40:48 +0200
committerBastien Wirtz <bastien.wirtz@gmail.com>2022-07-02 21:16:41 +0200
commitcbbed6346a437e6b9f05f646f1df0c77d2fb36eb (patch)
tree50d887f10739036a374065ebea047f891ad223a7 /src/components/SearchInput.vue
parent95c589ba71d80ed0073158bbb6f81ec449b058d6 (diff)
downloadhomer-cbbed6346a437e6b9f05f646f1df0c77d2fb36eb.tar.gz
homer-cbbed6346a437e6b9f05f646f1df0c77d2fb36eb.tar.zst
homer-cbbed6346a437e6b9f05f646f1df0c77d2fb36eb.zip
Migrate to VueJS 3
Diffstat (limited to 'src/components/SearchInput.vue')
-rw-r--r--src/components/SearchInput.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SearchInput.vue b/src/components/SearchInput.vue
index 165c992..53480e7 100644
--- a/src/components/SearchInput.vue
+++ b/src/components/SearchInput.vue
@@ -75,7 +75,7 @@ export default {
75 this.$emit("input", value.toLowerCase()); 75 this.$emit("input", value.toLowerCase());
76 }, 76 },
77 }, 77 },
78 beforeDestroy() { 78 beforeUnmount() {
79 document.removeEventListener("keydown", this._keyListener); 79 document.removeEventListener("keydown", this._keyListener);
80 }, 80 },
81}; 81};