- Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-else-if to chain them instead.
vue component에서 Template 하위에는 1개의 tag 영역만 나올 수 있음, 여러개의 tag의 경우에는 v-if, v-else-if를 통해 하나만 나올 수 있도록 컨트롤 해줘야함
오류 코드
<template>
<div></div>
<div></div>
<div></div>
</template>
정상 코드
<template>
<div v-if=""></div>
<div v-else-if=""></div>
<div v-else></div>
</template>
반응형
'오류관리' 카테고리의 다른 글
Broken Pipe (3) | 2019.11.08 |
---|---|
[오류관리] Dbeaver Password Charset (2) | 2019.10.02 |
[Vue.js] Make sure that this property is reactive (0) | 2019.06.26 |
[Java] Parameter 0 of constructor in `file name` required a bean of type 'java.lang.String' that could not be found. (0) | 2019.06.24 |
[GIT] (0) | 2019.03.11 |