Closing popover on outside click #673
Unanswered
khizarshaikh
asked this question in
Q&A
Replies: 3 comments
-
Hey, any way please to close tooltip (trigger: 'click') by clicking outside the tooltip ? |
Beta Was this translation helpful? Give feedback.
0 replies
-
+1 |
Beta Was this translation helpful? Give feedback.
0 replies
-
set the following config |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Actually i am using vue2-dropzone inside v-tool tip pop over and i want to close popover on outside clicks which works fine with auto-hide: true but when i try to select any file using vue2-dropzone then also the popover gets closed which is inside v-tooltip. so how can i prevent it in vue2-dropzone which is placed inside the template block of v-tool tip.
<v-popover :open="showPopOver" offset="-100%" placement="right-start" :auto-hide="true"> <button type="button" class="btn btn-primary text-nowrap" v-on:click="togglePopover()" title="Upload Logo"> Upload Logo </button> <template slot="popover"> <div class="popover-wrapper shadow "> <drag-drop-image></drag-drop-image> </div> </template> </v-popover>
Beta Was this translation helpful? Give feedback.
All reactions