How do I bind the iphone/Safari “Search” button on the on screen keyboard with an input event like keyup.enter?

How do I bind the virtual on screen keyboard “Search” key on my iPhone/iPad to an input event like

(keyup.enter)="searchLocation()"

enter image description here

I have an HTML input like this

<input enterkeyhint="search" #searchInput (keyup.enter)="searchLocation()" type="text" class="form-control" />

Maybe there is another issue I’m unaware of, but I can’t debug my iPhone with VS Code. The only think I can do is push to the dev site and then open the browser to look.