프젝 오류
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 endDateInput = ref(null);
const isKakaoMapLoaded = ref(false);
// DOM
let startInputElement = null;
let endInputElement = null;
const startDateInput = ref(null);
const endDateInput = ref(null);
// DOM
let startInputElement = null;
let endInputElement = null;
const openStartDatePicker = () => {
if (startInputElement) {
startInputElement.showPicker();
}
};
const openStartDatePicker = () => {
if (startInputElement) {
startInputElement.showPicker();
}
};
const openEndDatePicker = () => {
if (endInputElement) {
endInputElement.showPicker();
}
};
const openEndDatePicker = () => {
if (endInputElement) {
endInputElement.showPicker();
}
};
//
@ -607,7 +609,8 @@ onMounted(async () => {
// Kakao Maps API
const checkKakaoMapsLoaded = () => {
if (window.kakao && window.kakao.maps) {
if (window.kakao && window.kakao.maps && window.kakao.maps.services) {
isKakaoMapLoaded.value = true;
convertAddressToCoordinates();
} else {
setTimeout(checkKakaoMapsLoaded, 500);