Fixed #504 - Add id property to Menu
parent
85029d1d38
commit
b5522c4d20
|
@ -1,6 +1,7 @@
|
|||
import Vue from 'vue';
|
||||
|
||||
export declare class Menu extends Vue {
|
||||
id?: string;
|
||||
popup?: boolean;
|
||||
model?: any[];
|
||||
appendTo?: string;
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue