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