<report-body v-bind="$props">
    <div class="grid-row">
        <div class="grid-block">
            <div class="content">
                <h1 class="title centered uppercase">{{$t('title')}}</h1>
            </div>
            <table class="column-oriented">
                <thead>
                    <tr>
                        <th>{{$t('Plate')}}</th>
                        <th>{{$t('Concept')}}</th>
                        <th>{{$t('expirationDate')}}</th>
                    </tr>
                </thead>
                <tbody v-for="vehicleEvent in vehicleEvents">
                    <tr>
                        <td>{{vehicleEvent.numberPlate}}</td>
                        <td>{{vehicleEvent.description}}</td>
                        <td>{{formatDate(vehicleEvent.finished, '%d-%m-%Y')}}</td>
                    </tr>
                </tbody>
            </table>
        </div>
    </div>
</report-body>