jaredmcateer
released this
12 Jul 17:09
·
27 commits
to main
since this release
Patch Changes
-
#26
78cde59
Thanks @jaredmcateer! - Fixed component name inferencePreviously if the name property of components was missing it would default to
UnnamedComponent
. This made it difficult to search for components in Vue Devtools since you would just get a list ofNgVue-UnnamedComponent
in the list.This change will first attempt the name property, then it will use the file path and failing that it will name the component
AnonymousComponent
. This is more inline with the Vue 3 logic for determining component names.