VueJS error compiling template VueJS error compiling template vue.js vue.js

VueJS error compiling template


The error is pretty self-explanatory. You should have only one root element in each component. So just pack everything in a div.

<template>    <div>        <message>This is a small message!</message>        <message>Another one</message>    </div></template>