I'm using VueJS v2.5.13 and Vuetify v0.17.6.
I'm building a select with autocomplete functionality and whenever the user types something that's not on the list they'll be able to see a action to create a new option as the code below shows:
<template>
<v-select prepend-icon="view_list" :items="options" label="Quick searches" v-model="selected" item-text="label" autocomplete :search-value="inputText" clearable dense>
<template slot="item" slot-scope="data">
<v-flex xs12>
<v-layout>
<v-layout justify-start fill-height align-content-center>
<span>{{data.item.label}}</span>
</v-layout>
<v-layout justify-end row>
<v-icon color="success" @click="edit(data)">mod_edit</v-icon>
<v-icon color="error" @click="del(data)">delete_forever</v-icon>
</v-layout>
</v-layout>
</v-flex>
</template>
<template slot="no-data">
<v-container>
<v-layout row>
<v-layout justify-start fill-height align-content-center>
Create new search
</v-layout>
<v-layout justify-end>
<v-icon color="success" @click="create()">add</v-icon>
</v-layout>
</v-layout>
</v-container>
</template>
</v-select>
How can i access the text the user is typing to create a new 'quick search' using the user autocomplete text as label?
You can bind it by using :search-input.sync
:
<v-select :search-input.sync="searchInput"
add searchInput
variable to your data
data() {
return {
//...
searchInput: "",
};
},
example pen
Additionally, if it seems "laggy" that's because of debounce-search
property, which adds 200ms delay. You can change it to 0 if you want to catch value every time it's changed:
:debounce-search="0"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With