vue-selectize

vue-selectize JS library on GitHub vue-selectize JS library on npm Download vue-selectize JS library

A Vue.js directive for selectize.js

Version 0.0.3 License ISC
vue-selectize has no homepage
vue-selectize JS library on GitHub
vue-selectize JS library on npm
Download vue-selectize JS library
Keywords
vueselectizedropdownselect

vue-selectize

A Vue.js directive for selectize.js.

Requirements

  • Vue.js ^0.12.0
  • Selectize.js (and its dependencies)

Installation

$ npm install vue-selectize --save

Usage

When using webpack or browserify:

var Vue = require('vue');
var selectize = require('vue-selectize');

Vue.use(selectize);

Or when including directly in your HTML:

Vue.use(window['vue-selectize']);

After installing the plugin with Vue.use you can use the v-selectize directive.

<select v-selectize="selected" options="items"></select>

<!-- or -->

<select v-selectize="selected">
    <option value="one">Static item 1</option>
    <option value="two">Static item 2</option>
    <option value="three">Static item 3</option>
</select>

<!-- or -->

<select v-selectize="selected" options="items" settings="customSettings">
</select>
  • selected is the selected value
  • items is an array of the initial available options
  • customSettings is an object with settings that will be passed to selectize