From: djy0 Date: Sun, 15 Mar 2020 15:29:21 +0000 (+0800) Subject: chore(runtime-core): fix typo in warning (#841) [ci skip] X-Git-Tag: v3.0.0-alpha.9~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=58bc51991e844e8097e334a4bc1effa921a68e9c;p=thirdparty%2Fvuejs%2Fcore.git chore(runtime-core): fix typo in warning (#841) [ci skip] --- diff --git a/packages/runtime-core/src/vnode.ts b/packages/runtime-core/src/vnode.ts index df54210e34..272731e8a0 100644 --- a/packages/runtime-core/src/vnode.ts +++ b/packages/runtime-core/src/vnode.ts @@ -212,7 +212,7 @@ export function createVNode( ): VNode { if (!type) { if (__DEV__) { - warn(`fsef Invalid vnode type when creating vnode: ${type}.`) + warn(`Invalid vnode type when creating vnode: ${type}.`) } type = Comment }