2
0
Эх сурвалжийг харах

fix(runtime-dom): should not access document in non-browser env

fix #657
Evan You 6 жил өмнө
parent
commit
48152bc88e

+ 1 - 1
packages/runtime-dom/src/nodeOps.ts

@@ -1,4 +1,4 @@
-const doc = document
+const doc = (typeof document !== 'undefined' ? document : null) as Document
 const svgNS = 'http://www.w3.org/2000/svg'
 
 export const nodeOps = {