Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- TSDoc
- typescript
- 폰트적용하기
- 커스텀
- NonNullable
- 반복줄이기
- React.js
- 티스토리꾸미기
- 리액트
- 레이아웃쪼개기
- reactjs
- 제네릭
- returnType
- 성능최적화
- const 단언문
- 누구나 자료구조와 알고리즘
- CSS
- JS console
- javascript
- 타입스크립트
- vue.js
- 공통컴포넌트
- utilty type
- Chart.js
- 개발콘텐츠
- click and drag
- React Native
- react
- 타입좁히기
- 2022
Archives
- Today
- Total
몽땅뚝딱 개발자
[Vue.js] Vue3에서 빌트인 컴포넌트 <component> 사용하기 본문
Vue2로 개발할 때는 <component>를 한번도 사용해보지 않아서 차이점은 잘 모르겠지만..
Vue3부터 <component>를 사용하는 방법이 바뀌었다고 한다.
📄 HTML
<template>
...
<!-- for문 안에서 컴포넌트 이름을 가져와서 선언했다. -->
<component :is="changeTab(item.type)" :info="item"></component>
...
</template>
📄 Script
<script setup>
import { markRaw, ref } from 'vue'
import ChildComp1 from '@/components/ChildComp1.vue'
import ChildComp2 from '@/components/ChildComp2.vue'
const targetComponent = ref(null)
const changeTab = (component: string) => {
const components: any = {
ChildComp1,
ChildComp2,
}
return (targetComponent.value = markRaw(components[component]))
}
</setup>
출처
개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.
'Development > Vue.js' 카테고리의 다른 글
[Vue.js] router-link 태그의 활성화 여부 클래스 (0) | 2022.11.12 |
---|---|
[Vue.js] Object가 아닌 string 형태의 데이터를 보내보자 (0) | 2022.10.19 |
[Vue.js] ref의 input 포커스 이벤트 주기 (0) | 2022.06.22 |
[Vue.js] Vue3 - defineProps() & defineEmits() (0) | 2022.06.08 |
[Vue.js] 비트(Vite)란? (작성 중) (0) | 2022.06.04 |
Comments