Add nuisance report detail to status by ID page
This commit is contained in:
parent
531f3282d9
commit
882636de8f
3 changed files with 81 additions and 0 deletions
17
ts/rmo/components/ReportDetailEntry.vue
Normal file
17
ts/rmo/components/ReportDetailEntry.vue
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue