[Vue] slot
Vue에는 slot이라는 개념이 있는데 무엇? Parent Component에서 Child Component의 Element Tag사이에 삽입하여 Child Component의 원하는 Element로 fallback해주고자 할때 사용하는 개념이다. 앞서 말한 것처럼 Tag사이에 넣은 값을 Child Component의 Slot으로 fallback 되는 것이다. *name을 정하지 않은 의 name은 "default" 그리고 template tag와 v-slot으로 Child Component Slot을 매핑해서 사용한다면 아래와 같다.
https://yunzema.tistory.com/109