소스 검색

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

fix #657
Evan You 6 년 전
부모
커밋
48152bc88e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 = {