mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
34 lines
632 B
Vue
34 lines
632 B
Vue
<template>
|
|
<div class="amount-and-name-row">
|
|
<b-row>
|
|
<b-col cols="5">
|
|
<div class="text-right">
|
|
<span class="gdd-transaction-list-item-amount">
|
|
{{ amount | GDD }}
|
|
</span>
|
|
</div>
|
|
</b-col>
|
|
<b-col cols="7">
|
|
<div class="gdd-transaction-list-item-name">
|
|
<span>{{ text }}</span>
|
|
</div>
|
|
</b-col>
|
|
</b-row>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'AmountAndNameRow',
|
|
props: {
|
|
amount: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
text: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
}
|
|
</script>
|