While I came across several autocomplete/autosuggest samples, none of them quite fit what I'm looking for. Instead of displaying a list below the textbox that requires clicking or selecting, I want to show the closest match inside the textbox itself as the user is typing. This way, they can easily tab or use another method to complete the entry.
I believe I have the logic in Javascript (using Vue JS) figured out, but I am struggling with how to actually display this suggestion inside the input. I envision the suggested text being slightly dimmer in color, similar to placeholder text, and getting overwritten as the user continues typing.
Does anyone have any suggestions on how to achieve this?