fix: tooltip position on containers with overflow

This commit is contained in:
liyasthomas
2021-09-08 15:22:38 +05:30
parent 2cf55cbb96
commit c3e881ed77
4 changed files with 86 additions and 65 deletions

View File

@@ -5,5 +5,12 @@ Vue.use(VueTippy, {
a11y: false,
animateFill: false,
arrowType: "round",
popperOptions: {
modifiers: {
preventOverflow: {
boundariesElement: "window",
},
},
},
})
Vue.component("Tippy", TippyComponent)