[VueJS] vue If you are using v-if on multiple elements, use v-else-if to chain them instead. error
Vue component를 처음 사용하다 보면 한번쯤은 겪을 수 있는 에러인데 발생한 에러는 다음과 같다. ▷ 에러 vue If you are using v-if on multiple elements, use v-else-if to chain them instead. error 에러가 말하고자 하는것은 "여러 개의 태그를 최상위 레벨로 동시에 위치시킬 수 없다." 라는 의미라고 보면 된다. 이게 무슨 의미인가 하면 직접 예제 코드를 통해 확인해보자. ▷ 예제1) 에러발생 코드 Vue.component('modal-test',{ template: '테스트test' ,methods:{ show:function(){ this.$modal.show("test"); } } }); 이 component를 사용해 보..
2020. 10. 31.