mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 09:43:40 +09:00
first
This commit is contained in:
@@ -0,0 +1,114 @@
|
||||
---
|
||||
optionMultipleObject:
|
||||
batman: Batman
|
||||
robin: Robin
|
||||
joker: Joker
|
||||
valueMultipleObject:
|
||||
- robin
|
||||
---
|
||||
|
||||
### Custom label
|
||||
|
||||
The `<Multiselect />` component in multiple mode has a default label when you
|
||||
start selecting options. You can change the way the message is formatted by
|
||||
using the `#multiplelabel` custom slot to configure your message.
|
||||
|
||||
<!--code-->
|
||||
|
||||
```vue
|
||||
<script setup lang="ts">
|
||||
import Multiselect from '@vueform/multiselect'
|
||||
const valueMultipleObject = ref(['robin'])
|
||||
const optionMultipleObject = ref({
|
||||
batman: 'Batman',
|
||||
robin: 'Robin',
|
||||
joker: 'Joker',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<VField v-slot="{ id }" class="demo-field mb-6">
|
||||
<VControl>
|
||||
<Multiselect
|
||||
v-model="valueMultipleObject"
|
||||
:attrs="{ id }"
|
||||
mode="multiple"
|
||||
placeholder="Select your characters"
|
||||
:options="optionMultipleObject"
|
||||
>
|
||||
<template #multiplelabel="{ values }">
|
||||
<div class="multiselect-multiple-label">
|
||||
{{ values.length }} characters selected
|
||||
</div>
|
||||
</template>
|
||||
</Multiselect>
|
||||
</VControl>
|
||||
</VField>
|
||||
</template>
|
||||
```
|
||||
|
||||
<!--/code-->
|
||||
|
||||
<!--example-->
|
||||
|
||||
<div class="columns">
|
||||
<div class="column is-4">
|
||||
<VField v-slot="{ id }">
|
||||
<VControl>
|
||||
<Multiselect
|
||||
:attrs="{ id }"
|
||||
v-model="frontmatter.valueMultipleObject"
|
||||
mode="multiple"
|
||||
placeholder="Select your characters"
|
||||
:options="frontmatter.optionMultipleObject"
|
||||
>
|
||||
<template #multiplelabel="{ values }">
|
||||
<div class="multiselect-multiple-label">
|
||||
{{ values.length }} characters selected
|
||||
</div>
|
||||
</template>
|
||||
</Multiselect>
|
||||
</VControl>
|
||||
</VField>
|
||||
</div>
|
||||
<div class="column is-4">
|
||||
<VField v-slot="{ id }" class="is-curved-select">
|
||||
<VControl>
|
||||
<Multiselect
|
||||
:attrs="{ id }"
|
||||
v-model="frontmatter.valueMultipleObject"
|
||||
mode="multiple"
|
||||
placeholder="Select your characters"
|
||||
:options="frontmatter.optionMultipleObject"
|
||||
>
|
||||
<template #multiplelabel="{ values }">
|
||||
<div class="multiselect-multiple-label">
|
||||
{{ values.length }} characters selected
|
||||
</div>
|
||||
</template>
|
||||
</Multiselect>
|
||||
</VControl>
|
||||
</VField>
|
||||
</div>
|
||||
<div class="column is-4">
|
||||
<VField v-slot="{ id }" class="is-rounded-select">
|
||||
<VControl>
|
||||
<Multiselect
|
||||
:attrs="{ id }"
|
||||
v-model="frontmatter.valueMultipleObject"
|
||||
mode="multiple"
|
||||
placeholder="Select your characters"
|
||||
:options="frontmatter.optionMultipleObject"
|
||||
>
|
||||
<template #multiplelabel="{ values }">
|
||||
<div class="multiselect-multiple-label">
|
||||
{{ values.length }} characters selected
|
||||
</div>
|
||||
</template>
|
||||
</Multiselect>
|
||||
</VControl>
|
||||
</VField>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--/example-->
|
||||
Reference in New Issue
Block a user