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'; import Vue from 'vue';
export declare class TieredMenu extends Vue { export declare class TieredMenu extends Vue {
id?: string;
popup?: boolean; popup?: boolean;
model?: any[]; model?: any[];
appendTo?: string; appendTo?: string;
@ -9,4 +10,4 @@ export declare class TieredMenu extends Vue {
toggle(event: Event): void; toggle(event: Event): void;
show(event: Event, target?: any): void; show(event: Event, target?: any): void;
hide(): void; hide(): void;
} }

View File

@ -193,6 +193,12 @@ toggle(event) {
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr>
<td>id</td>
<td>string</td>
<td>null</td>
<td>Unique identifier of the element.</td>
</tr>
<tr> <tr>
<td>model</td> <td>model</td>
<td>array</td> <td>array</td>
@ -465,4 +471,4 @@ export default {
</TabPanel> </TabPanel>
</TabView> </TabView>
</div> </div>
</template> </template>