From: Evan You Date: Wed, 29 Jan 2020 16:28:18 +0000 (-0500) Subject: chore: fix template explorer mounting X-Git-Tag: v3.0.0-alpha.5~158 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=93eba4347dcf0651d53255da830d455d3ade6dd6;p=thirdparty%2Fvuejs%2Fcore.git chore: fix template explorer mounting --- diff --git a/packages/template-explorer/src/options.ts b/packages/template-explorer/src/options.ts index 0e637dffc0..867903d7cc 100644 --- a/packages/template-explorer/src/options.ts +++ b/packages/template-explorer/src/options.ts @@ -112,5 +112,5 @@ const App = { } export function initOptions() { - createApp().mount(App, document.getElementById('header')!) + createApp(App).mount(document.getElementById('header')!) }