vue-google-autocomplete
vue-google-autocomplete copied to clipboard
Made the Input inherit all attrs
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>