loading ALPR screen

This commit is contained in:
Will Freeman
2024-10-29 20:22:45 -06:00
parent 0680fcb908
commit c0701a7451
2 changed files with 19 additions and 25 deletions
+1 -5
View File
@@ -1,18 +1,14 @@
<template>
<l-circle-marker
@click="$emit('click', props)"
:lat-lng="[props.lat, props.lon]"
:radius="26"
:center="[props.lat, props.lon]"
color="#3f54f3"
/>
</template>
<script setup lang="ts">
import { LCircleMarker } from '@vue-leaflet/vue-leaflet';
import { defineProps, defineEmits } from 'vue';
defineEmits(['click']);
import { defineProps } from 'vue';
const props = defineProps({
lat: Number,