🖥
eslint の The template root requires exactly one element ( vue/valid-t
What is the template root requires exactly one element (vue / valid-template-root) by eslint? #Vue
一番外側にある <template>
には、内側に要素が必要だ!
要素がないとエラーになるっぽい
NG
<template>
</template>
OK
<template>
<div/>
</template>
NG
<template>
<template/>
</template>
OK
<template>
<div>
<template/>
</div>
</template>
Original by Github issue
チャットメンバー募集
何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。
公開日時
2019-09-02
Discussion