Fixed #501 - Add id property to MultiSelect
parent
63020feb8e
commit
3ad88388c0
|
@ -1,6 +1,7 @@
|
||||||
import Vue, {VNode} from 'vue';
|
import Vue, {VNode} from 'vue';
|
||||||
|
|
||||||
export declare class MultiSelect extends Vue {
|
export declare class MultiSelect extends Vue {
|
||||||
|
id?: string;
|
||||||
modelValue?: any;
|
modelValue?: any;
|
||||||
options?: any[];
|
options?: any[];
|
||||||
optionLabel?: string;
|
optionLabel?: string;
|
||||||
|
|
|
@ -84,6 +84,12 @@ data() {
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>id</td>
|
||||||
|
<td>string</td>
|
||||||
|
<td>null</td>
|
||||||
|
<td>Unique identifier of the element.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>modelValue</td>
|
<td>modelValue</td>
|
||||||
<td>any</td>
|
<td>any</td>
|
||||||
|
|
Loading…
Reference in New Issue