UNPKG

vue-choice

Version:

a vue select/choice component that strives for native-select compatibility

39 lines (27 loc) 929 B
# vue-choice [![NPM version](https://img.shields.io/npm/v/vue-choice.svg?style=flat)](https://npmjs.com/package/vue-choice) [![NPM downloads](https://img.shields.io/npm/dm/vue-choice.svg?style=flat)](https://npmjs.com/package/vue-choice) [![CircleCI](https://circleci.com/gh/kmohrf/vue-choice/tree/master.svg?style=shield)](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)