0.0.2 • Published 7 years ago

v-select-jsdt v0.0.2

Weekly downloads
10
License
-
Repository
-
Last release
7 years ago

v-select

the select component in favor of dynamic fuzzy search,based on vue2.

installation

npm install v-select-jsdt

instructions

although has been used in the project, but is still in perfect

usage

<template>
  <div>
    <VSelect
      v-model="searchText"
      :options="options">
    </VSelect>
  </div>
</template>

<script>
 import VSelect from 'v-select-jsdt'
  export default {
    components: { VSelect },
    data () {
      return {
        searchText: null,
        options: ['g', 'c', 'y']
      }
    }
  }
</script>
0.0.2

7 years ago

0.0.1

7 years ago