diff options
| author | Henry Jameson <me@hjkos.com> | 2021-04-07 22:42:34 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2021-04-25 14:05:25 +0300 |
| commit | 8d46fd78c7ada7600afe7b74932a6f2380964592 (patch) | |
| tree | a8d43b426e466f9dec8c69a0d9d983bf21999778 /src/components/popover/popover.js | |
| parent | 95e74319e11e673ce0a6a53546eae98a0b9c3eb5 (diff) | |
migrate to v-slot
Diffstat (limited to 'src/components/popover/popover.js')
| -rw-r--r-- | src/components/popover/popover.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/popover/popover.js b/src/components/popover/popover.js index 849846f5..a30a37c9 100644 --- a/src/components/popover/popover.js +++ b/src/components/popover/popover.js @@ -54,7 +54,7 @@ const Popover = { } // Popover will be anchored around this element, trigger ref is the container, so - // its children are what are inside the slot. Expect only one slot="trigger". + // its children are what are inside the slot. Expect only one v-slot:trigger. const anchorEl = (this.$refs.trigger && this.$refs.trigger.children[0]) || this.$el // SVGs don't have offsetWidth/Height, use fallback const anchorWidth = anchorEl.offsetWidth || anchorEl.clientWidth |
