vue-moveable
vue-moveable copied to clipboard
nuxt typescript HTMLElement is not defined
To use this library with Nuxt and typescript I need to add this code into my nuxt.config.js.
global.HTMLElement =
typeof window === 'undefined' ? Object : window.HTMLElement;
global.SVGElement = typeof window === 'undefined' ? Object : window.SVGElement;
https://github.com/nuxt/nuxt.js/issues/5622#issuecomment-492212292