We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d0108 commit 47eb20cCopy full SHA for 47eb20c
packages/floating-vue/src/components/PopperWrapper.vue
@@ -69,6 +69,11 @@ import ThemeClass from './ThemeClass'
69
70
export type TriggerEvent = 'hover' | 'click' | 'focus' | 'touch'
71
72
+let Element: any = function () {}
73
+if (typeof window !== 'undefined') {
74
+ Element = window.Element
75
+}
76
+
77
export default defineComponent({
78
name: 'VPopperWrapper',
79
0 commit comments