[Vuejs]-Vue JS via CDN – why does adding a component replace the entire template?

1👍

You should not use self-closing tags for Vue components in DOM templates as HTML only allows self closing for well known types like <input> and <img>.

For more details see the documentation:
https://vuejs.org/guide/essentials/component-basics.html#dom-template-parsing-caveats

👤Thomas

Leave a comment