Skip to content

Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.

License

Notifications You must be signed in to change notification settings

ShipBlu/vue-select

 
 

Repository files navigation

shipblu-vue-select

Everything you wish the HTML <select> element could do, wrapped up into a lightweight, zero dependency, extensible Vue component.

Vue Select is a feature rich select/dropdown/typeahead component. It provides a default template that fits most use cases for a filterable select dropdown. The component is designed to be as lightweight as possible, while maintaining high standards for accessibility, developer experience, and customization.

  • Tagging
  • Filtering / Searching
  • Vuex Support
  • AJAX Support
  • SSR Support
  • Accessible
  • ~20kb Total / ~5kb CSS / ~15kb JS
  • Select Single/Multiple Options
  • Customizable with slots and SCSS variables
  • Zero dependencies

Documentation

Complete documentation and examples available at https://shipblu-vue-select.org.

Sponsors 🎉

It takes a lot of effort to maintain this project. If it has saved you development time, please consider sponsoring the project with GitHub sponsors!

Huge thanks to the sponsors and contributors that make Vue Select possible!

Install

Vue 3 support is on the beta channel: shipblu-vue-select@beta, and will become the new default when v4 is released. See #1579 for more details!

Vue 2 / Vue Select 3.x

# use npm

npm install shipblu-vue-select

Then, import and register the component:

import Vue from "vue";
import vShipbluSelect from "shipblu-vue-select";

Vue.component("V-select", vShipbluSelect);

The component itself does not include any CSS. You'll need to include it separately:

import "shipblu-vue-select/dist/shipblu-vue-select.css";

You can also include shipblu-vue-select directly in the browser. Check out the documentation for loading from CDN..

License

MIT

About

Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • JavaScript 56.9%
  • Vue 26.7%
  • CSS 8.2%
  • SCSS 7.7%
  • HTML 0.5%