Posts

Showing posts from July, 2020

Vue Multiselect

Image
When writing enterprise client-facing applications, a robust multiselect component is a must. Enterprise applications usually consist of reporting and management tools. These tools are equipped with a variety of filters. Filters often consist of lists of thousands of items, allowing the user to pick anywhere from one to hundreds quickly. It is also important to quickly see what items have been selected. As I transitioned from AngularJs to Vue, I set out on a journey to find the best multiselect on the market, so I did not have to write my own. Unfortunately, after much research, nothing I found satisfied my requirements, so I ended up writing my own: Demo :  http://vue-listbox-multiselect.s3-website-us-west-2.amazonaws.com/ Github :  https://github.com/banner-edge-media/vue-listbox-multiselect Preview : Code: < vue-listbox-multiselect v-model =" selectedList " :search-function =" search " placeholder ="Search Cities" size ="medium" /...