Fixed #501 - Add id property to MultiSelect

pull/525/head
mertsincan 2020-09-27 18:30:26 +03:00
parent 63020feb8e
commit 3ad88388c0
2 changed files with 9 additions and 2 deletions

View File

@ -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[];
}
}
}

View File

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