<template>
<h3>Hi Welcome to the App</h3>
<HelloWorld name="test"/>
</template>
I was getting the below error:
**[vue/no-multiple-template-root]
The template root requires exactly one element.eslint-plugin-vue**
Here, you just need to wrap up multiple elements in div
<template>
<div>
<h3>Hi Welcome to the App</h3>
<HelloWorld name="test"/>
</div>
</template>