UNPKG

@oruga-ui/oruga-next

Version:

UI components for Vue.js and CSS framework agnostic

8 lines (5 loc) 275 B
// Polyfills for SSR export const isClient = typeof window !== "undefined"; export const HTMLElement = isClient ? window.HTMLElement : Object; export const HTMLInputElement = isClient ? window.HTMLInputElement : Object; export const File = isClient ? window.File : Object;