v-select-jsdt
v0.0.2
Published
select based on vue2
Downloads
5
Readme
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>