After adding VueJS to my website, I am encountering numerous console errors similar to the one above. Although I have not yet attempted to create any Vue components, there are several custom HTML tags present on my site.
Does VueJS automatically interpret any custom HTML tags (i.e. those not listed in the HTML spec) as elements requiring compilation? Will it consistently generate error messages for unrecognized tags?
Is there a way to disable these warning messages?
Note: This question is distinct from Vue js unknown custom element
In that case, the user was actively trying to develop a Vue component.