forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDisplaySelectedItemSlot.vue
More file actions
102 lines (97 loc) · 2.14 KB
/
DisplaySelectedItemSlot.vue
File metadata and controls
102 lines (97 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<template>
<div class="q-pa-md" style="max-width: 300px">
<div class="q-gutter-md">
<q-badge color="secondary" multi-line>
Model: "{{ model }}"
</q-badge>
<q-select
filled
v-model="model"
:options="options"
stack-label
label="Standard"
>
<template v-slot:selected>
Company:
<q-chip
v-if="model"
dense
square
color="white"
text-color="primary"
class="q-my-none q-ml-xs q-mr-none"
>
<q-avatar color="primary" text-color="white" :icon="model.icon" />
{{ model.label }}
</q-chip>
<q-badge v-else>*none*</q-badge>
</template>
</q-select>
<q-select
filled
v-model="model"
:options="options"
stack-label
label="Standard"
color="secondary"
>
<template v-slot:selected-item="scope">
<q-chip
removable
dense
@remove="scope.removeAtIndex(scope.index)"
:tabindex="scope.tabindex"
color="white"
text-color="secondary"
class="q-ma-none"
>
<q-avatar color="secondary" text-color="white" :icon="scope.opt.icon" />
{{ scope.opt.label }}
</q-chip>
</template>
</q-select>
</div>
</div>
</template>
<script>
import { ref } from 'vue'
export default {
setup () {
return {
model: ref({
label: 'Google',
value: 'goog',
icon: 'mail'
}),
options: [
{
label: 'Google',
value: 'goog',
icon: 'mail'
},
{
label: 'Facebook',
value: 'fb',
icon: 'bluetooth'
},
{
label: 'Twitter',
value: 'twt',
icon: 'map'
},
{
label: 'Apple',
value: 'app',
icon: 'golf_course'
},
{
label: 'Oracle',
value: 'ora',
disable: true,
icon: 'casino'
}
]
}
}
}
</script>