35 lines
795 B
Vue
35 lines
795 B
Vue
<template>
|
|
<table class="margin-auto">
|
|
<tr v-for="type in REPORT_TYPES_ORDER">
|
|
<td class="pa-2"><img class="reportIcon" :src="REPORT_TYPES[type].image"/></td>
|
|
<td class="pa-2 text-xs-left"><strong>{{ $t(REPORT_TYPES[type].label) }}</strong>{{ $t('misc.spaceBeforeDoublePunctuations') }}: {{ $t(REPORT_TYPES[type].description) }}</td>
|
|
</tr>
|
|
</table>
|
|
</template>
|
|
|
|
<script>
|
|
import { REPORT_TYPES, REPORT_TYPES_ORDER } from '@/constants';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
REPORT_TYPES,
|
|
REPORT_TYPES_ORDER,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.margin-auto {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.reportIcon {
|
|
background: white;
|
|
width: 100px;
|
|
vertical-align: middle;
|
|
}
|
|
</style>
|