Kaynağa Gözat

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

fix #657
Evan You 6 yıl önce
ebeveyn
işleme
48152bc88e
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      packages/runtime-dom/src/nodeOps.ts

+ 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 = {