vue-google-autocomplete icon indicating copy to clipboard operation
vue-google-autocomplete copied to clipboard

Made the Input inherit all attrs

Open Vlaoff opened this issue 6 years ago • 0 comments

Using tip from https://youtu.be/7lpemgMhi0k?t=21m49s

All the attrs that you give to vue-google-autocomplete component are passed to the input in the field.

vue-google-autocomplete(:data-some-attr="myVar")

becomes

<div>
    <input .... data-some-attr="myValue">
</div>

Vlaoff avatar Apr 11 '18 09:04 Vlaoff