Fixed #713 - display prop of MultiSelect is not documented

pull/726/head
Cagatay Civici 2020-11-27 15:30:34 +03:00
parent d6321736c1
commit b87113b331
2 changed files with 7 additions and 0 deletions

View File

@ -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;

View File

@ -193,6 +193,12 @@ data() {
<td>string</td>
<td>No results found</td>
<td>Text to display when filtering does not return any results.</td>
</tr>
<tr>
<td>display</td>
<td>string</td>
<td>comma</td>
<td>Defines how the selected items are displayed, valid values are "comma" and "chip".</td>
</tr>
</tbody>
</table>