2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00
Files
vue-select/docs/01_Install_And_Usage.md
T
2016-10-19 09:22:43 -07:00

737 B

Install via NPM

npm install sagalbot/vue-select

To use the vue-select component in your templates, simply import it, and register it within your component.

<template>
  <div>
    <v-select :value.sync="selected" :options="options"></v-select>
  </div>
</template>
<script>
  import vSelect from "vue-select"

  export default {
    components: {vSelect},

    data() {
      return {
        selected: null,
        options: ['foo','bar','baz']
      }
    }
  }
</script>

Alternatively, you can register the component globally. This is ideal if you are going to be using vue-select in multiple components.

import Vue from 'vue'
import vSelect from 'vue-select'

Vue.component('v-select', vSelect)