프젝 오류
Some checks failed
LocalNet_front/pipeline/head There was a failure building this commit

This commit is contained in:
yoon 2025-03-25 17:53:20 +09:00
parent ecaf40ced2
commit 6abb6a532b

View File

@ -292,25 +292,27 @@ const selectedUsers = ref({
}); });
const startDateInput = ref(null); const isKakaoMapLoaded = ref(false);
const endDateInput = ref(null);
// DOM const startDateInput = ref(null);
let startInputElement = null; const endDateInput = ref(null);
let endInputElement = null;
// DOM
let startInputElement = null;
let endInputElement = null;
const openStartDatePicker = () => { const openStartDatePicker = () => {
if (startInputElement) { if (startInputElement) {
startInputElement.showPicker(); startInputElement.showPicker();
} }
}; };
const openEndDatePicker = () => { const openEndDatePicker = () => {
if (endInputElement) { if (endInputElement) {
endInputElement.showPicker(); endInputElement.showPicker();
} }
}; };
// //
@ -607,7 +609,8 @@ onMounted(async () => {
// Kakao Maps API // Kakao Maps API
const checkKakaoMapsLoaded = () => { const checkKakaoMapsLoaded = () => {
if (window.kakao && window.kakao.maps) { if (window.kakao && window.kakao.maps && window.kakao.maps.services) {
isKakaoMapLoaded.value = true;
convertAddressToCoordinates(); convertAddressToCoordinates();
} else { } else {
setTimeout(checkKakaoMapsLoaded, 500); setTimeout(checkKakaoMapsLoaded, 500);