A Vanila Vue.js component that mimics the selectize behaviour

A Vanila Vue.js component that mimics the selectize behaviour

Vanila Vue.js component that mimics Selectize behaviour (no need jquery dependency)

vue-selectize

A Vanila Vue.js component that mimics the selectize behaviour https://ivan.vilanculo.me/vue-selectize

Installation

yarn add selectize @isneezy/vue-selectize

Usage

<template>
  <v-selectize v-model="selected" :options="['neat','awesome']"/>
</template>
import 'selectize/dist/css/selectize.css'
import VSelectize from '@isneezy/vue-selectize'
export default {
  data: () => ({
    selected: ''
  }),
    components: {
    VSelectize
  }
}

Github Repository

Tags: #VueJs #Select