Fixed #502 - Add id property to AutoComplete

pull/525/head
mertsincan 2020-09-27 18:34:48 +03:00
parent 87f22a4aa8
commit 78e9678c95
2 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,7 @@
import Vue, { VNode } from 'vue';
export declare class AutoComplete extends Vue {
id?: string;
modelValue?: any;
suggestions?: any[];
field?: string;

View File

@ -94,6 +94,12 @@ export default {
</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>