Subscribe on changes!

fix(cli): Fix vue/valid-template-root error.

avatar
May 6th 2020

The template root requires exactly one element.

<template>
  <h1></h1>
  <p></p>
</template>

=>

<template>
  <div>
    <h1></h1>
    <p></p>
  </div>
</template>
avatar
May 6th 2020

In Vue 3 Multiple Root Elements Are Supported So This PR Is Not Required

avatar
May 6th 2020

@bekalshenoy Thanks.