isReactComponent returned true for blank inputs (e.g. undefined), which could produce confusing error messages. E.g. from Vue if you had components: {MyComponent: undefined} (could be undefined because of e.g. a failing import) it would display a Vuera ReactWrapper error instead of the normal Vue "[Vue warn]: Unknown custom element" error.
isReactComponent
returnedtrue
for blank inputs (e.g.undefined
), which could produce confusing error messages. E.g. from Vue if you hadcomponents: {MyComponent: undefined}
(could be undefined because of e.g. a failing import) it would display a Vuera ReactWrapper error instead of the normal Vue "[Vue warn]: Unknown custom element" error.