Angular: Blur input on enter
As yurzui pointed out in the comments:
(keydown.enter)="$event.target.blur();submit();false"
You can use sharp symbole to creates a template variable that references element directly:
<input type="text" #search (keyup.enter)="search.blur()">