Add nuisance report detail to status by ID page

This commit is contained in:
Eli Ribble 2026-04-09 01:15:13 +00:00
parent 531f3282d9
commit 882636de8f
No known key found for this signature in database
3 changed files with 81 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<template>
<div class="row">
<div class="col-md-4">
<strong>{{ label }}</strong>
</div>
<div class="col-md-6">
<span>{{ value }}</span>
</div>
</div>
</template>
<script setup lang="ts">
interface Props {
label: string;
value: string;
}
const props = defineProps<Props>();
</script>