mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 08:23:47 +09:00
216 lines
5.8 KiB
Markdown
216 lines
5.8 KiB
Markdown
---
|
|
selectSlotOptions:
|
|
- value: alice
|
|
name: Alice Carasca
|
|
icon: https://media.cssninja.io/content/avatars/7.jpg
|
|
- value: erik
|
|
name: Erik Kovalsky
|
|
icon: /images/avatars/svg/vuero-1.svg
|
|
- value: melany
|
|
name: Melany Wallace
|
|
icon: https://media.cssninja.io/content/avatars/25.jpg
|
|
- value: tara
|
|
name: Tara Svenson
|
|
icon: https://media.cssninja.io/content/avatars/13.jpg
|
|
- value: mary
|
|
name: Mary Lebowski
|
|
icon: https://media.cssninja.io/content/avatars/5.jpg
|
|
- value: irina
|
|
name: Irina Vierbovsky
|
|
icon: https://media.cssninja.io/content/avatars/23.jpg
|
|
- value: jonathan
|
|
name: Jonathan Krugger
|
|
icon: https://media.cssninja.io/content/avatars/32.jpg
|
|
selectSlotValue:
|
|
---
|
|
|
|
### Users with search
|
|
|
|
The `<Multiselect />` component can be used with a custom template to show
|
|
images for options and selected option. 2 CSS modifiers are available for
|
|
images radius: `is-curved` and `is-rounded`.
|
|
|
|
<!--code-->
|
|
|
|
```vue
|
|
<script setup lang="ts">
|
|
|
|
const selectSlotValue = ref()
|
|
const selectSlotOptions = [
|
|
{
|
|
value: 'alice',
|
|
name: 'Alice Carasca',
|
|
icon: 'https://media.cssninja.io/content/avatars/7.jpg',
|
|
},
|
|
{
|
|
value: 'erik',
|
|
name: 'Erik Kovalsky',
|
|
icon: '/images/avatars/svg/vuero-1.svg',
|
|
},
|
|
{
|
|
value: 'melany',
|
|
name: 'melany Wallace',
|
|
icon: 'https://media.cssninja.io/content/avatars/25.jpg',
|
|
},
|
|
{
|
|
value: 'tara',
|
|
name: 'Tara Svenson',
|
|
icon: 'https://media.cssninja.io/content/avatars/13.jpg',
|
|
},
|
|
{
|
|
value: 'mary',
|
|
name: 'Mary Lebowski',
|
|
icon: 'https://media.cssninja.io/content/avatars/5.jpg',
|
|
},
|
|
{
|
|
value: 'irina',
|
|
name: 'Irina Vierbovsky',
|
|
icon: 'https://media.cssninja.io/content/avatars/23.jpg',
|
|
},
|
|
{
|
|
value: 'jonathan',
|
|
name: 'Jonathan Krugger',
|
|
icon: 'https://media.cssninja.io/content/avatars/32.jpg',
|
|
},
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<VField v-slot="{ id }">
|
|
<VControl>
|
|
<Multiselect
|
|
v-model="selectSlotValue"
|
|
:attrs="{ id }"
|
|
placeholder="Select a member"
|
|
label="name"
|
|
:options="selectSlotOptions"
|
|
:searchable="true"
|
|
track-by="name"
|
|
:max-height="145"
|
|
>
|
|
<template #singlelabel="{ value }">
|
|
<div class="multiselect-single-label">
|
|
<img
|
|
class="select-label-icon"
|
|
:src="value.icon"
|
|
alt=""
|
|
>
|
|
{{ value.name }}
|
|
</div>
|
|
</template>
|
|
<template #option="{ option }">
|
|
<img
|
|
class="select-option-icon"
|
|
:src="option.icon"
|
|
alt=""
|
|
>
|
|
{{ option.name }}
|
|
</template>
|
|
</Multiselect>
|
|
</VControl>
|
|
</VField>
|
|
</template>
|
|
```
|
|
|
|
<!--/code-->
|
|
|
|
<!--example-->
|
|
|
|
<div class="columns">
|
|
<div class="column is-4">
|
|
<VField v-slot="{ id }" class="is-image-select">
|
|
<VControl>
|
|
<Multiselect
|
|
:attrs="{ id }"
|
|
v-model="frontmatter.selectSlotValue"
|
|
placeholder="Select a member"
|
|
label="name"
|
|
:options="frontmatter.selectSlotOptions"
|
|
:searchable="true"
|
|
trackBy="name"
|
|
:maxHeight="145"
|
|
>
|
|
<template v-slot:singlelabel="{ value }">
|
|
<div class="multiselect-single-label">
|
|
<img class="select-label-icon" :src="value.icon" />
|
|
<span class="select-label-text">
|
|
{{ value.name }}
|
|
</span>
|
|
</div>
|
|
</template>
|
|
<template v-slot:option="{ option }">
|
|
<img class="select-option-icon" :src="option.icon" />
|
|
<span class="select-option-text">
|
|
{{ option.name }}
|
|
</span>
|
|
</template>
|
|
</Multiselect>
|
|
</VControl>
|
|
</VField>
|
|
</div>
|
|
<div class="column is-4">
|
|
<VField v-slot="{ id }" class="is-image-select is-curved-select">
|
|
<VControl>
|
|
<Multiselect
|
|
:attrs="{ id }"
|
|
v-model="frontmatter.selectSlotValue"
|
|
placeholder="Select a member"
|
|
label="name"
|
|
:options="frontmatter.selectSlotOptions"
|
|
:searchable="true"
|
|
trackBy="name"
|
|
:maxHeight="145"
|
|
>
|
|
<template v-slot:singlelabel="{ value }">
|
|
<div class="multiselect-single-label">
|
|
<img class="select-label-icon is-curved" :src="value.icon" />
|
|
<span class="select-label-text">
|
|
{{ value.name }}
|
|
</span>
|
|
</div>
|
|
</template>
|
|
<template v-slot:option="{ option }">
|
|
<img class="select-option-icon is-curved" :src="option.icon" />
|
|
<span class="select-option-text">
|
|
{{ option.name }}
|
|
</span>
|
|
</template>
|
|
</Multiselect>
|
|
</VControl>
|
|
</VField>
|
|
</div>
|
|
<div class="column is-4">
|
|
<VField v-slot="{ id }" class="is-image-select is-rounded-select">
|
|
<VControl>
|
|
<Multiselect
|
|
:attrs="{ id }"
|
|
v-model="frontmatter.selectSlotValue"
|
|
placeholder="Select a member"
|
|
label="name"
|
|
:options="frontmatter.selectSlotOptions"
|
|
:searchable="true"
|
|
trackBy="name"
|
|
:maxHeight="145"
|
|
>
|
|
<template v-slot:singlelabel="{ value }">
|
|
<div class="multiselect-single-label">
|
|
<img class="select-label-icon is-rounded" :src="value.icon" />
|
|
<span class="select-label-text">
|
|
{{ value.name }}
|
|
</span>
|
|
</div>
|
|
</template>
|
|
<template v-slot:option="{ option }">
|
|
<img class="select-option-icon is-rounded" :src="option.icon" />
|
|
<span class="select-option-text">
|
|
{{ option.name }}
|
|
</span>
|
|
</template>
|
|
</Multiselect>
|
|
</VControl>
|
|
</VField>
|
|
</div>
|
|
</div>
|
|
|
|
<!--/example-->
|