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;
@ -19,4 +20,4 @@ export declare class AutoComplete extends Vue {
$slots: {
list: VNode[];
};
}
}

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>
@ -321,4 +327,4 @@ export default {
</TabPanel>
</TabView>
</div>
</template>
</template>