I'm working with with AFrame which used its own custom web component syntax. Vue is trying to parse, for example, <a-scene> as a component. Can non-Vue elements be ignored in Vue templates?
<a-scene>
Yeah, you can just add v-pre to <a-scene>:
v-pre
<a-scene v-pre> <!-- aframe stuff --> </a-scene>
There is v-pre, which lets you manually specify the element nodes to be ignored.
Most helpful comment
Yeah, you can just add
v-preto<a-scene>: