v-select2

1.0.1 • Public • Published

Vue-Select2

Select2 component for Vue2

Installation

yarn install --save v-select2

Examples

<template>
  <form>
    <select2 :options="options"></select2>
  </form>
</template>
<script>
  import Select2 from 'vue-select2/src/Select2'

  export default {
  	data () {
  	  return {
  	  	options: [
  	  	  {
  	  	  	name: 'Name 1',
  	  	  	value: 'Value 1'
  	  	  }
  	  	]
  	  }
  	}
  	components: {
  	  'select2': Select2
  	}
  }
</script>  

Readme

Keywords

none

Package Sidebar

Install

npm i v-select2

Weekly Downloads

6

Version

1.0.1

License

MIT

Last publish

Collaborators

  • checkraiser