Update popover.js

This commit is contained in:
Shpuld Shpludson 2020-06-16 15:12:44 +00:00
parent 84a69f9502
commit 24e47eb604
1 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
const Popover = {
name: 'Popover',
props: {
@ -31,7 +30,7 @@ const Popover = {
},
methods: {
containerBoundingClientRect () {
const container = this.boundToSelector ? document.querySelector(this.boundToSelector) : this.$el.offsetParent
const container = this.boundToSelector ? this.$el.closest(this.boundToSelector) : this.$el.offsetParent
return container.getBoundingClientRect()
},
updateStyles () {