Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/revskill10/vue-select2

Vue 2 Select2 component
https://github.com/revskill10/vue-select2

select2 vue2

Last synced: 12 days ago
JSON representation

Vue 2 Select2 component

Awesome Lists containing this project

README

        

# Vue-Select2

Select2 component for Vue2

# Installation

```
yarn install --save v-select2
```

# Examples

```js



import Select2 from 'vue-select2/src/Select2'

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

```