{{ mapResult?.year }}年 {{ mapResult?.month }}月{{ mapData?.year }}年 {{ mapData?.month }}月
@@ -104,7 +104,7 @@
맵 버전이 맞지 않습니다.
렌더러 버전: {{ CURRENT_MAP_VERSION }}
- API 버전: {{ modelValue.version ?? 0 }}
+ API 버전: {{ mapData.version ?? 0 }}
@@ -193,6 +193,7 @@ const { sourceType: cursorType } = useMouse();
const emit = defineEmits<{
(event: "city-click", city: MapCityParsed, e: MouseEvent | TouchEvent): void;
(event: "parsed", drawable: MapCityDrawable): void;
+ (event: 'update:modelValue', value: MapCityParsed): void;
}>();
const isFullWidth = ref(true);
@@ -239,17 +240,23 @@ const props = defineProps({
required: true,
},
- modelValue: {
+ mapData: {
type: Object as PropType