File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<v-autocomplete
3
+ ref =" autocompleteRef"
3
4
v-model =" model"
4
5
v-model:search =" search"
5
- ref =" autocompleteRef"
6
6
auto-select-first
7
7
class =" rounded"
8
- min-width =" 280px"
9
8
clearable
10
9
:custom-filter =" filter"
11
10
density =" compact"
15
14
:items =" items"
16
15
label =" Ort, Adresse, Flurname,..."
17
16
:loading =" !!abortController"
17
+ min-width =" 280px"
18
18
:prepend-inner-icon =" mdiMagnify"
19
19
return-object
20
20
single-line
21
21
variant =" outlined"
22
- @focus =" handleInfoVisibility(true)"
23
22
@click:clear =" clear"
23
+ @focus =" handleInfoVisibility(true)"
24
24
>
25
25
<template #item =" { props , item } " >
26
26
<v-list-item
27
27
v-bind =" props"
28
- :key =" item.raw.id"
29
28
:id =" item.raw.id"
30
- :value =" item.raw.id"
29
+ :key =" item.raw.id"
31
30
:subtitle =" item.raw.type"
32
31
:title =" item.raw.properties.name"
32
+ :value =" item.raw.id"
33
33
></v-list-item >
34
34
</template >
35
35
</v-autocomplete >
You can’t perform that action at this time.
0 commit comments