chore(runtime-core): fix typo in warning (#841) [ci skip]

This commit is contained in:
djy0 2020-03-15 23:29:21 +08:00 committed by GitHub
parent 60ed4e7e08
commit 58bc51991e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -212,7 +212,7 @@ export function createVNode(
): VNode { ): VNode {
if (!type) { if (!type) {
if (__DEV__) { if (__DEV__) {
warn(`fsef Invalid vnode type when creating vnode: ${type}.`) warn(`Invalid vnode type when creating vnode: ${type}.`)
} }
type = Comment type = Comment
} }