Not sure if this is already available, but I couldn't find a <slot> to target the multiselect-tags element.
The reason I would want to target this is to wrap it in a <transitition-group> to allow for animations when adding or removing elements.
I was able to accomplish this in the old vue-multiselect library.
Something similar to the selection slot in vue-multiselect:
selection
Slot that can be used to show all selected tags. The main different between theselectionslot and thetagslot is that thetagslot renders per tag, however this slot renders just once, leaving the display of each tag to you (if you wish to display each one)Slot-scopesearch – the search valueremoveElement – method to remove the slot (pass the option)values – Array of selected valuesis-open – Boolean if the select is open
Not sure if this is already available, but I couldn't find a
<slot>
to target themultiselect-tags
element.The reason I would want to target this is to wrap it in a
<transitition-group>
to allow for animations when adding or removing elements.I was able to accomplish this in the old vue-multiselect library.
Something similar to the
selection
slot in vue-multiselect: