dx(runtime-core): log the component object when warning about missing template/render function (#10263)

This commit is contained in:
skirtle 2024-05-27 11:01:25 +01:00 committed by GitHub
parent 56f5692fb6
commit 7d4e5750ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1006,7 +1006,7 @@ export function finishComponentSetup(
: ``) /* should not happen */,
)
} else {
warn(`Component is missing template or render function.`)
warn(`Component is missing template or render function: `, Component)
}
}
}