vue-moveable icon indicating copy to clipboard operation
vue-moveable copied to clipboard

nuxt typescript HTMLElement is not defined

Open shadow81627 opened this issue 4 years ago • 0 comments

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

shadow81627 avatar Jul 15 '21 03:07 shadow81627