mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
24 lines
420 B
Vue
24 lines
420 B
Vue
<template>
|
|
<div class="memo-row">
|
|
<b-row>
|
|
<b-col cols="5">
|
|
<div class="text-right">{{ $t('form.memo') }}</div>
|
|
</b-col>
|
|
<b-col cols="7">
|
|
<div class="gdd-transaction-list-message">{{ memo }}</div>
|
|
</b-col>
|
|
</b-row>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'MemoRow',
|
|
props: {
|
|
memo: {
|
|
type: String,
|
|
required: false,
|
|
},
|
|
},
|
|
}
|
|
</script>
|