mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-05 17:36:09 +00:00
24 lines
450 B
Vue
24 lines
450 B
Vue
<template>
|
|
<div class="link-count-row">
|
|
<b-row>
|
|
<b-col cols="5">
|
|
<div class="text-right">{{ $t('gdd_per_link.links_count') }}</div>
|
|
</b-col>
|
|
<b-col cols="7">
|
|
<div class="gdd-transaction-list-link-count">{{ count }}</div>
|
|
</b-col>
|
|
</b-row>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'LinkCountRow',
|
|
props: {
|
|
count: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
},
|
|
}
|
|
</script>
|