diff --git a/frontend/src/components/SearchBar.vue b/frontend/src/components/SearchBar.vue index 1ee987e15ae1008573f4eca8a267281279edc1b5..55508ce9f351fa4f2b175a87200376d77bb7c83c 100644 --- a/frontend/src/components/SearchBar.vue +++ b/frontend/src/components/SearchBar.vue @@ -3,25 +3,6 @@ </template> <script> -import axios from "axios"; - -export default { - data: function () { - return { - moviename: "", - movies: [], - moviesLoadingError: "", - }; - }, - methods: { - search_movie: function () { - let input = document.getElementById('searchbar').value - input=input.toLowerCase(); - let x = document.getElementsByClassName('movies'); - - } -} - }; </script>