Recently delving into the world of vue, I encountered a challenge while working on an update form. When trying to pre-select multiple options using the selected
attribute, I noticed that only the last option was being selected. Upon further investigation, it became apparent that the selected
attribute is not actually rendered by vue!
Frustrated by this limitation, I came across a fantastic vue package that addresses this issue called vue-multiselect
However, I can't help but wonder why vue itself doesn't natively support this functionality and instead requires the use of another library?