반응형
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 |
Tags
- custom command
- svelte
- 비동기
- aws
- web vital
- http3
- import.meta.env
- vue
- Cypress
- devtools
- ts error
- msw
- vue-cli
- typeScript
- api test
- caching
- rendering
- 선택자
- QUIC
- Testing
- TLS
- CSS
- vue3
- JavaScript
- e2e
- https
- CloudFlare
- ViTE
- SSR
- csr
Archives
- Today
- Total
Develop Note by J.S.
[Vue3] 동적 Component 본문
반응형
1. 동적 컴포넌트
동적 컴포넌트 :is 는 선택된 탭에 따라 렌더링되는 컴포넌트 기능 및 권한에 따라 노출되는 컴포넌트 기능 등등, 환경에 따른 동적 컴포넌트 렌더링 기능입니다.
2. 예제코드
동적 컴포넌트 렌더링 방법에 대한 예제 코드 입니다.
<template>
<component :is="renderComponent"></component>
</template>
<script setup lang="ts">
import { onBeforeMount, ref, markRaw } from 'vue';
import ComponentA from '@/pages/ComponentA.vue';
import ComponentB from '@/pages//ComponentB.vue';
const renderComponent = ref(null);
onBeforeMount(async () => {
if (조건 === 'componentA') {
renderComponent.value = await markRaw(ComponentA);
} else {
renderComponent.value = await markRaw(ComponentB);
}
});
</script>
<style scoped lang="scss"></style>
markRow : 객체를 원시로 표현한 뒤 반환하여 반응형 시스템에서 관찰되지 않아 불필요한 재렌더링을 줄여 애플리케이션의 성능을 최적화함.
markRow로 인하여 watch가 동작되지 않을 경우
// 기존
watch(props, (n, o) => (user.value = props.data));
// 변경
watch(() => {
if (props.data) {
user.value = props.data;
}
}, callback());
참고사이트
반응형
'FrontEnd > Vue3' 카테고리의 다른 글
[Vue3] Keep-Alive (비활성 컴포넌트 캐싱) (0) | 2023.07.28 |
---|---|
[Vue3] 다중 Instance (0) | 2023.06.30 |
[Vue3] Provide/ Inject (0) | 2023.06.28 |
[Vue3] v-model (0) | 2023.06.28 |
[Vue3] Watch (0) | 2023.06.19 |