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

fix #657
This commit is contained in:
Evan You 2020-01-25 22:31:29 -05:00
parent 963c71a7ed
commit 48152bc88e

View File

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