autocomplete
autocomplete copied to clipboard
View output list
I am using the VUE component and would like to know how to force the results to be shown below the input field. I saw that in the style sheet there is a rule for the data-position = "below" and the data-position = "above", how can i apply those attributes to the VUE component instance?
If you use the default slot, you should be able to assign those attributes yourself and override it to always be above or below.
Ok, thank you. I try this tomorrow :)