Skip to content

Commit

Permalink
docs(NcSelectTags): Add visible labels to examples
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Ng <chrng8@gmail.com>
  • Loading branch information
Pytal committed Dec 16, 2023
1 parent 5cbb856 commit 03c39d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/NcSelectTags/NcSelectTags.vue
Expand Up @@ -27,7 +27,7 @@
```vue
<template>
<div class="wrapper">
<NcSelectTags v-model="value" :multiple="false" />
<NcSelectTags v-model="value" input-label="Tag" :aria-label-combobox="null" :multiple="false" />
{{ value }}
</div>
</template>
Expand All @@ -47,7 +47,7 @@ export default {
```vue
<template>
<div class="wrapper">
<NcSelectTags v-model="value" :multiple="true" />
<NcSelectTags v-model="value" input-label="Tags" :aria-label-combobox="null" :multiple="true" />
{{ value }}
</div>
</template>
Expand All @@ -71,7 +71,7 @@ Because of compatibility reasons only 5 tag entries are shown by default. If you
```vue
<template>
<div class="wrapper">
<NcSelectTags v-model="value" :limit="null" />
<NcSelectTags v-model="value" input-label="Tags" :aria-label-combobox="null" :limit="null" />
{{ value }}
</div>
</template>
Expand All @@ -94,7 +94,7 @@ It's also possible to apply any custom filter logic by setting the `optionsFilte
```vue
<template>
<div class="wrapper">
<NcSelectTags v-model="value" :options-filter="customFilter" />
<NcSelectTags v-model="value" input-label="Tags" :aria-label-combobox="null" :options-filter="customFilter" />
{{ value }}
</div>
</template>
Expand Down

0 comments on commit 03c39d3

Please sign in to comment.