Looking to focus on the input field within a form? Here is the HTML code:
<form method="GET" name="searchFormArticles" novalidate="" data-search-form="articles" data-search-form-articles="" action="/rechtstipps" id="searchFormArticles" data-read-only="1">
<input type="text" name="what" id="searchArticlesWhat" placeholder="Thema / Autor / Titel" class="form-control anw-form-control border-left-0 anw-md-rounded-right-none anw-md-border-right-0 shadow-none form-control" value="" autocomplete="off">
<button name="searchArticles" type="submit" class="btn btn-block btn-primary mt-3 mt-md-0 shadow-none text-nowrap py-md-0 px-9 anw-md-rounded-left-none">
<i class="far fa-search d-none d-md-inline-block text-primary" aria-hidden="true"&bt;</i>
<span>Suchen</span>
</button>
The input field has both a name = "what" attribute and an id attribute. How can this input element be caught in Vue?