From b87113b3311ab6d32a16a29c61229f84154c60fe Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Fri, 27 Nov 2020 15:30:34 +0300 Subject: [PATCH] Fixed #713 - display prop of MultiSelect is not documented --- src/components/multiselect/MultiSelect.d.ts | 1 + src/views/multiselect/MultiSelectDoc.vue | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/src/components/multiselect/MultiSelect.d.ts b/src/components/multiselect/MultiSelect.d.ts index cebcef993..0e074c811 100755 --- a/src/components/multiselect/MultiSelect.d.ts +++ b/src/components/multiselect/MultiSelect.d.ts @@ -18,6 +18,7 @@ declare class MultiSelect extends Vue { ariaLabelledBy?: string; appendTo?: string; emptyFilterMessage?: string; + display?: string; $emit(eventName: 'input', value: any): this; $emit(eventName: 'change', e: {originalEvent: Event, value: any}): this; $emit(eventName: 'before-show'): this; diff --git a/src/views/multiselect/MultiSelectDoc.vue b/src/views/multiselect/MultiSelectDoc.vue index 0b2376bdd..de1a74baf 100755 --- a/src/views/multiselect/MultiSelectDoc.vue +++ b/src/views/multiselect/MultiSelectDoc.vue @@ -193,6 +193,12 @@ data() { string No results found Text to display when filtering does not return any results. + + + display + string + comma + Defines how the selected items are displayed, valid values are "comma" and "chip".