Update SearchMarker.vue

This commit is contained in:
syuilo 2025-02-22 18:50:16 +09:00
parent 0f86049b22
commit fa65b41470
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,10 @@ SPDX-License-Identifier: AGPL-3.0-only
import { onMounted, onUnmounted, ref, shallowRef } from 'vue';
const props = defineProps<{
markerId: string;
markerId?: string;
label?: string;
icon?: string;
keywords?: string[];
children?: string[];
}>();