mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
27 lines
528 B
Vue
27 lines
528 B
Vue
<template>
|
|
<div class="date-row">
|
|
<b-row>
|
|
<b-col cols="5">
|
|
<div class="text-right">{{ $t('form.date') }}</div>
|
|
</b-col>
|
|
<b-col cols="7">
|
|
<div class="gdd-transaction-list-item-date">
|
|
{{ $d(new Date(balanceDate), 'long') }}
|
|
{{ $i18n.locale === 'de' ? 'Uhr' : '' }}
|
|
</div>
|
|
</b-col>
|
|
</b-row>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'DateRow',
|
|
props: {
|
|
balanceDate: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
}
|
|
</script>
|