vue-choice
Version:
a vue select/choice component that strives for native-select compatibility
39 lines (27 loc) • 929 B
Markdown
# vue-choice
[](https://npmjs.com/package/vue-choice) [](https://npmjs.com/package/vue-choice) [](https://circleci.com/gh/kmohrf/vue-choice/tree/master)
a vue select/choice component that strives for native-select compatibility
## Install
```bash
// with npm
npm install vue-choice
// with yarn
yarn add vue-choice
```
CDN: [UNPKG](https://unpkg.com/vue-choice/) | [jsDelivr](https://cdn.jsdelivr.net/npm/vue-choice/) (available as `window.VueChoice`)
## Usage
```vue
<template>
<Choice></Choice>
</template>
<script>
import Choice from 'vue-choice'
export default {
components: {
Choice
}
}
</script>
```
## License
MIT © [Konrad Mohrfeldt](https://github.com/kmohrf)