xxxxxxxxxx
1
<template>
2
<div class="container mt-115">
3
<div class="row">
4
<div class="col-4">
5
<MDBAutocomplete @change="checkIfValid" id="client" autocomplete="true" v-model="autocompleteBasic" :filter="filterOptions" label="Example label" :displayValue="displayValueDisplay" @itemSelect="selectAuto" @close="closeAuto" />
6
</div>
7
</div>
8
</div>
9
</template>
xxxxxxxxxx
1
<style>
2
#app {
3
font-family: Roboto, Helvetica, Arial, sans-serif;
4
}
5
</style>
xxxxxxxxxx
1
import {
2
MDBSelect,
3
MDBAutocomplete
4
} from "mdb-vue-ui-kit";
5
import {
6
ref, watch, nextTick, onMounted
7
} from "vue";
8
9
export default {
10
components: {
11
MDBSelect,
12
MDBAutocomplete,
13
},
14
setup() {
15
// added missing v-model ref
16
const autocompleteBasic = ref("")
17
18
const PartiesList = ref();
19
const getItems = ref([]);
20
const filterOptions = (value) => {
21
let starttime = Date.now();
22
let flag = "";
23
let filteredOptions = PartiesList.value.filter((item) => {
24
if (item) {
25
return item.toLowerCase().startsWith(value.toLowerCase());
26
}
27
});
28
let returnOptions = [];
29
if (filteredOptions.length > 0) {
30
returnOptions = filteredOptions;
31
}
32
return returnOptions;
33
};
34
35
const selectAuto = (value) => {
36
// added console log with picked value
37
// console.log("Picked value: " + value)
38
nextTick(()=>{
39
checkIfValid()
40
console.log("next tick value ", autocompleteBasic.value)
41
})
42
// console.log('value before timeout' +autocompleteBasic.value);
43
// setTimeout(function(){
44
// console.log('value after timeout' + autocompleteBasic.value);
45
// }, 500);
46
}
47
48
const closeAuto = () => {
49
// console.log("close Auto");
50
}
51
52
const checkIfValid = () =>{
53
if (PartiesList.value.findIndex(item=>item.toLowerCase()===autocompleteBasic.value.toLowerCase()) === -1) {
54
autocompleteBasic.value = ""
55
}
56
}
57
58
onMounted(()=>{
59
let array = []
60
for(var i = 0; i < 10000; i++){
61
array.push("Party " + (i+1));
62
}
63
PartiesList.value = array
64
})
65
66
// added new watcher
67
watch(()=> autocompleteBasic.value, (current, previous) => {
68
// checkIfValid()
69
// console.log("WATCH - old value: " + previous)
70
// console.log("WATCH - new value: " + current)
71
})
72
73
const displayValueDisplay = (value) => value.toUpperCase();
74
return {
75
PartiesList,
76
getItems,
77
filterOptions,
78
displayValueDisplay,
79
selectAuto,
80
autocompleteBasic,
81
closeAuto,
82
checkIfValid
83
};
84
},
85
};
Console errors: 0