Skip to content

Latest commit

 

History

History
62 lines (46 loc) · 1.48 KB

README.md

File metadata and controls

62 lines (46 loc) · 1.48 KB

vue-select

Opinionated select and multiselect Vue component with Bootstrap 4 styles

TODO: screenshot

Install

npm install --save @click2buy/vue-select

Usage

<template>
  <div>
    <vue-select v-model="value" />
  </div>
</template>

<script>
import VueSelect from '@click2buy/vue-select'

export default {
  components: { VueSelect },
  data: function() {
    return {
      value: null
    }
  }
}
</script>

Thanks

We love this project, but it does not provide an advanced multiselect. This component was built to fill this gap.

This component uses its clickout mixin 🙏 and our documentation is organized based on theirs.

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build