From b371f0e248a4ffe9ba2b5b87e4dac676429c4ef8 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 2 Aug 2023 15:00:28 +0300 Subject: [PATCH] Refactor #4231 - For ContextMenu --- components/lib/contextmenu/ContextMenu.d.ts | 4 ++++ components/lib/contextmenu/ContextMenu.vue | 2 +- components/lib/contextmenu/ContextMenuSub.vue | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/components/lib/contextmenu/ContextMenu.d.ts b/components/lib/contextmenu/ContextMenu.d.ts index 076504ae3..5230c20f3 100755 --- a/components/lib/contextmenu/ContextMenu.d.ts +++ b/components/lib/contextmenu/ContextMenu.d.ts @@ -75,6 +75,10 @@ export interface ContextMenuPassThroughOptions { * @see {@link BaseComponent.ComponentHooks} */ hooks?: ComponentHooks; + /** + * Used to control Vue Transition API. + */ + transition?: any; } /** diff --git a/components/lib/contextmenu/ContextMenu.vue b/components/lib/contextmenu/ContextMenu.vue index 009fe167b..b5f1c38b6 100755 --- a/components/lib/contextmenu/ContextMenu.vue +++ b/components/lib/contextmenu/ContextMenu.vue @@ -1,6 +1,6 @@