Trevor Eyre
Trevor Eyre
Thank you so much for your contribution! I want to make sure I understand this use case a little better. If you wanted a form to not submit on enter,...
If you use the [default slot](https://autocomplete.trevoreyre.com/#/vue-component?id=default-slot), you should be able to assign those attributes yourself and override it to _always_ be above or below.
The included styles are intentionally opinionated, and are meant to be imported in your JS, like your last example. To override the styles yourself, you'd need to add a class...
I think that's happening because of the document click listener, which always calls the function to close the results list, even if it's already closed. https://github.com/trevoreyre/autocomplete/blob/master/packages/autocomplete-js/Autocomplete.js#L194-L199 I think a fairly...
Thanks, @shaunbarrio. I'll have to investigate further on this one. If it's not announcing the first result until you navigate to it the second time, that's definitely a problem.
Yep, there's definitely some things to iron out for the customized templates in Vue. If you have some specific errors you're seeing, or some reproduction steps, I can try to...
There isn’t really a great way to do that in the current version, unfortunately. I’m planning on giving much more control over rendering and providing values and events from the...
I think that's expected behavior. I'm just using a listener on document click to close the dropdown, so I can't really control when the browser fires that event.
Interesting. My only hesitation with this approach is in server rendered apps, which wouldn't have access to the `document` object. If there is a way to forward the ref to...
This is a use case I want to support eventually, but you're right, in its current form the component isn't really built for this. I'll add a reminder to take...