Fixed #502 - Add id property to AutoComplete
parent
87f22a4aa8
commit
78e9678c95
|
@ -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[];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue