Updated Map View
This commit is contained in:
@@ -1,10 +1,16 @@
|
||||
<script setup lang="ts">
|
||||
import {Anchor} from "vuetify";
|
||||
import {Ref} from "vue";
|
||||
|
||||
defineProps<{
|
||||
location?: Anchor;
|
||||
openDelay?: number;
|
||||
}>();
|
||||
|
||||
defineSlots<{
|
||||
activator(props: any): any;
|
||||
default(props: { isActive: Ref<boolean> }): any;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@@ -13,9 +19,9 @@ defineProps<{
|
||||
<slot name="activator" v-bind="activatorScope" />
|
||||
</template>
|
||||
|
||||
<template #default>
|
||||
<template #default="tooltipScope">
|
||||
<div class="glass-tooltip glass glass-border">
|
||||
<slot />
|
||||
<slot v-bind="tooltipScope" />
|
||||
</div>
|
||||
</template>
|
||||
</v-tooltip>
|
||||
|
||||
Reference in New Issue
Block a user