UNPKG
@ishitatsuyuki/oruga-next
Version:
latest (0.5.5-direct-export)
0.5.5-direct-export
UI components for Vue.js and CSS framework agnostic
oruga.io
oruga-ui/oruga
@ishitatsuyuki/oruga-next
/
src
/
utils
/
ssr.ts
8 lines
(5 loc)
•
259 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
// Polyfills for SSR
export
const
isSSR =
typeof
window
===
'undefined'
export
const
HTMLElement
= isSSR ?
Object
:
window
.
HTMLElement
export
const
HTMLInputElement
= isSSR ?
Object
:
window
.
HTMLInputElement
export
const
File
= isSSR ?
Object
:
window
.
File