Opinionated select and multiselect Vue component with Bootstrap 4 styles
TODO: screenshot
npm install --save @click2buy/vue-select
<template>
<div>
<vue-select v-model="value" />
</div>
</template>
<script>
import VueSelect from '@click2buy/vue-select'
export default {
components: { VueSelect },
data: function() {
return {
value: null
}
}
}
</script>
We love this project, but it does not provide an advanced multiselect. This component was built to fill this gap.
This component uses its clickout mixin 🙏 and our documentation is organized based on theirs.
- Bootstrap-multiselect - Our choice before switching to Vue
- vue-multiselect - Our first choice when switching to Vue
- React-select - What we hoped to find for Vue
- Google Material Design - Inspiration for the indeterminate checkbox
- vue-slick-carousel - Well organized/maintained repository
- Bulbapedia - Pokémon icon images for the demo
npm install
npm run serve
npm run build