Fixed #503 - Add id property to TieredMenu

pull/525/head
mertsincan 2020-09-27 19:45:29 +03:00
parent 87d9a2a59e
commit 85029d1d38
2 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,7 @@
import Vue from 'vue';
export declare class TieredMenu extends Vue {
id?: string;
popup?: boolean;
model?: any[];
appendTo?: string;

View File

@ -193,6 +193,12 @@ toggle(event) {
</tr>
</thead>
<tbody>
<tr>
<td>id</td>
<td>string</td>
<td>null</td>
<td>Unique identifier of the element.</td>
</tr>
<tr>
<td>model</td>
<td>array</td>