Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vue-multiple/select
Vue-based selsect component
https://github.com/vue-multiple/select
select vue vue-select
Last synced: 27 days ago
JSON representation
Vue-based selsect component
- Host: GitHub
- URL: https://github.com/vue-multiple/select
- Owner: vue-multiple
- License: mit
- Created: 2017-08-11T09:24:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-14T07:19:17.000Z (over 7 years ago)
- Last Synced: 2024-11-07T20:12:08.559Z (about 2 months ago)
- Topics: select, vue, vue-select
- Language: Vue
- Homepage: https://vue-multiple.github.io/select/
- Size: 1.07 MB
- Stars: 12
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# select
> Vue-based select component
## Install
```bash
npm install vue-multiple-select -S
```## Quick Start
```bash
import Vue from 'vue'import {VmSelect, VmOption, VmSelectDropdown, VmOptionGroup} from 'vue-multiple-select'
Vue.component(VmSelect.name, VmSelect)
Vue.component(VmOption.name, VmOption)
Vue.component(VmSelectDropdown.name, VmSelectDropdown)
Vue.component(VmOptionGroup.name, VmOptionGroup)
```
OR
```bash
import Vue from 'vue'import VmSelect from 'vue-multiple-select'
Vue.use(VmSelect)
```For more information, please refer to [select](http://vue-multiple.github.io/select) in our documentation.
## Build Setup
``` bash
# install dependencies
npm install# serve with hot reload at localhost:8080
npm run demo:dev# build for demo with minification
npm run demo:build# build for gh-pages with minification
npm run demo:prepublish# build for production with minification
npm run build
```## LICENSE
[MIT](http://opensource.org/licenses/MIT)