vue에서 lottie-web을 써서 아래 코드를 작성함
const lottieRef = ref<Element | null>(null);
onMounted(() => {
lottie.loadAnimation({
container: lottieRef.value,
renderer: 'svg',
loop: true,
autoplay: true,
animationData: animationLoading,
});
});
여기서 container 부분에서 빨간줄이 떴다.
Type 'undefined' is not assignable to type 'Element'.
이런 에러가 떴다.
undefined를 잡으면 null 문제라고 또 떴다.
이것을 해결하는 방법은
const lottieRef = ref<Element | null>(null);
onMounted(() => {
if(!lottieRef.value) return;
lottie.loadAnimation({
container: lottieRef.value,
renderer: 'svg',
loop: true,
autoplay: true,
animationData: animationLoading,
});
});
이렇게 체크를 해주면 된다. !
728x90
'에러노트' 카테고리의 다른 글
[에러노트] pnpm install에서 node 버전 오류/ volta , nvm (0) | 2024.01.12 |
---|---|
[에러노트] VScode 에러 날때 (0) | 2023.08.31 |
[에러노트] Failed to load config "react-app" to extend from. (0) | 2022.11.30 |
[에러노트] react form에서 onKeyPress 2번 실행되는 문제 (0) | 2022.05.02 |
[에러노트] A component is changing an uncontrolled input to be controlled. ... (0) | 2022.04.01 |