feat: log on the fly template compilation error

This commit is contained in:
Evan You
2019-10-11 11:16:20 -04:00
parent 68f4e5e04d
commit 95d7e1f471
2 changed files with 8 additions and 2 deletions

View File

@@ -1,8 +1,8 @@
// This package is the "full-build" that includes both the runtime
// and the compiler, and supports on-the-fly compilation of the template option.
import { compile, CompilerOptions } from '@vue/compiler-dom'
import * as runtimeDom from '@vue/runtime-dom'
import { registerRuntimeCompiler, RenderFunction } from '@vue/runtime-dom'
import * as runtimeDom from '@vue/runtime-dom'
function compileToFunction(
template: string,
@@ -12,6 +12,7 @@ function compileToFunction(
hoistStatic: true,
...options
})
return new Function('Vue', code)(runtimeDom) as RenderFunction
}