]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore(runtime-core): fix typo in warning (#841) [ci skip]
authordjy0 <krivergo3@gmail.com>
Sun, 15 Mar 2020 15:29:21 +0000 (23:29 +0800)
committerGitHub <noreply@github.com>
Sun, 15 Mar 2020 15:29:21 +0000 (11:29 -0400)
packages/runtime-core/src/vnode.ts

index df54210e34261e49e098471de134b6260183b648..272731e8a0502263e191b7f7d2e9d0e94fee4479 100644 (file)
@@ -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
   }