aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/SearchInput.vue
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2022-07-13 13:46:03 -0700
committerGitHub <noreply@github.com>2022-07-13 13:46:03 -0700
commitc11c45a661addf377ac5f4773ba39f5ef66ec155 (patch)
tree204cd561549dd6424d7e07c88b042e3bce62d608 /src/components/SearchInput.vue
parentd57821b5fa8b994bc4082f7565a072090ff288a1 (diff)
parent0eca982f8bc89bbac3ed4fee248fc53b7c4c0527 (diff)
downloadhomer-c11c45a661addf377ac5f4773ba39f5ef66ec155.tar.gz
homer-c11c45a661addf377ac5f4773ba39f5ef66ec155.tar.zst
homer-c11c45a661addf377ac5f4773ba39f5ef66ec155.zip
Merge pull request #482 from bastienwirtz/vuejs-3
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};