MongoDB Atlas 연결 실패 트러블슈팅

26/02/24

1️⃣ MongoDB Atlas 연결 시 아래 에러 발생

2️⃣ 에러 화면

3️⃣ 해결

v-calendar호출 문제

📎월 이동 시 API 미호출

1️⃣ 캘린더 월 이동 시 API 미호출

2️⃣ v-calendar는 월 이동 시 update:pages 이벤트를 발생시킴

3️⃣ 해결

📎캘린더 월 이동 시 API 무한호출

1️⃣ 첫 진입시 캘린더 무한 호출

2️⃣ 마지막으로 emit한 month를 저장

3️⃣ 해결

const lastEmittedMonth = ref("");

if (monthStr === lastEmittedMonth.value) return;

lastEmittedMonth.value = monthStr;
emit("monthChange", monthStr);