There is a function to search. Now filtering goes according to words with the appropriate language keyboard layout. I would like to add a function: even if a word with an English layout falls into the search, and in the data array the words are Russian, filter the array in the same way. For example, when typing the word "ghbdtn" in the form, the array was filtered and understood that I meant "hello"
let filtered = this.movies; filtered = this.movies.filter( m => m.film.toLowerCase().indexOf(this.search) > -1); return filtered;