Fixed #504 - Add id property to Menu

pull/525/head
mertsincan 2020-09-27 19:48:28 +03:00
parent 85029d1d38
commit b5522c4d20
2 changed files with 9 additions and 2 deletions

View File

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

View File

@ -107,6 +107,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>