Vue-Treeselect

A multi-select component with nested options support for Vue.js

README

vue-treeselect npm Build Coverage

npm monthly downloads
jsDelivr monthly hits Known vulnerabilities License

A multi-select component with nested options support for Vue.js


Vue-Treeselect Screenshot

Features


- Single & multiple select with nested options support
- Fuzzy matching
- Async searching
- Delayed loading (load data of deep level options only when needed)
- Keyboard support (navigate using Arrow Up & Arrow Down keys, select option using Enter key, etc.)
- Rich options & highly customizable
- Supports a wide range of browsers (see below)
- RTL support

Requires Vue 2.2+

Getting Started


It's recommended to install vue-treeselect via npm, and build your app using a bundler like webpack.

  1. ``` sh
  2. npm install --save @riophae/vue-treeselect
  3. ```

This example shows how to integrate vue-treeselect with your Vue SFCs.

  1. ```vue

  2. <template>
  3.   <div id="app">
  4.     <treeselect v-model="value" :multiple="true" :options="options" />
  5.   </div>
  6. </template>
  7. <script>
  8.   // import the component
  9.   import Treeselect from '@riophae/vue-treeselect'
  10.   // import the styles
  11.   import '@riophae/vue-treeselect/dist/vue-treeselect.css'

  12.   export default {
  13.     // register the component
  14.     components: { Treeselect },
  15.     data() {
  16.       return {
  17.         // define the default value
  18.         value: null,
  19.         // define options
  20.         options: [ {
  21.           id: 'a',
  22.           label: 'a',
  23.           children: [ {
  24.             id: 'aa',
  25.             label: 'aa',
  26.           }, {
  27.             id: 'ab',
  28.             label: 'ab',
  29.           } ],
  30.         }, {
  31.           id: 'b',
  32.           label: 'b',
  33.         }, {
  34.           id: 'c',
  35.           label: 'c',
  36.         } ],
  37.       }
  38.     },
  39.   }
  40. </script>
  41. ```

If you just don't want to use webpack or any other bundlers, you can simply include the standalone UMD build in your page. In this way, make sure Vue as a dependency is included before vue-treeselect.

  1. ``` html
  2. <html>
  3.   <head>
  4.     
  5.     <script src="https://cdn.jsdelivr.net/npm/vue@^2"></script>
  6.     
  7.     <script src="https://cdn.jsdelivr.net/npm/@riophae/vue-treeselect@^0.4.0/dist/vue-treeselect.umd.min.js"></script>
  8.     <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@riophae/vue-treeselect@^0.4.0/dist/vue-treeselect.min.css">
  9.   </head>
  10.   <body>
  11.     <div id="app">
  12.       <treeselect v-model="value" :multiple="true" :options="options" />
  13.     </div>
  14.   </body>
  15.   <script>
  16.     // register the component
  17.     Vue.component('treeselect', VueTreeselect.Treeselect)
  18.     new Vue({
  19.       el: '#app',
  20.       data: {
  21.         // define the default value
  22.         value: null,
  23.         // define options
  24.         options: [ {
  25.           id: 'a',
  26.           label: 'a',
  27.           children: [ {
  28.             id: 'aa',
  29.             label: 'aa',
  30.           }, {
  31.             id: 'ab',
  32.             label: 'ab',
  33.           } ],
  34.         }, {
  35.           id: 'b',
  36.           label: 'b',
  37.         }, {
  38.           id: 'c',
  39.           label: 'c',
  40.         } ],
  41.       },
  42.     })
  43.   </script>
  44. </html>
  45. ```

Documentation & Live Demo



Note: please use a desktop browser since the website hasn't been optimized for mobile devices.

Browser Compatibility


- Chrome
- Edge
- Firefox
- IE ≥ 9
- Safari

It should function well on IE9, but the style can be slightly broken due to the lack of support of some relatively new CSS features, such as transition and animation. Nevertheless it should look 90% same as on modern browsers.

Bugs


You can use this pen to reproduce bugs and then open an issue.

Contributing


1. Fork & clone the repo
2. Install dependencies by yarn or npm install
3. Check out a new branch
4. npm run dev & hack
5. Make sure npm test passes
6. Push your changes & file a pull request

Credits


This project is inspired by vue-multiselect, react-select and Ant Design. Special thanks go to their respective authors!

Some icons used in this project:

  - "link" icon made by Smashicons is licensed under CC 3.0 BY
  - "spinner" icon from SpinKit is licensed under the MIT License
  - "caret" icon made by Dave Gandy is licensed under CC 3.0 BY
  - "delete" icon made by Freepik is licensed under CC 3.0 BY
  - "checkmark symbol" & "minus symbol" icons made by Catalin Fertu are licensed under CC 3.0 BY

License


Copyright (c) 2017-present Riophae Lee.

Released under the MIT License.