gradido/frontend/src/components/TransactionListItem.vue
MateuszMichalowski b69d2273ae
feat(frontend): add transaction link in latest transactions (#3375)
* fix(frontend): post migration fixes

* fix(frontend): align with stylelint

* fix(frontend): fix tests and dashboard layout

* feat(frontend): add link to transactions

* feat(frontend): remove unused code

* feat(frontend): let dynamic keys in translations

* feat(frontend): fix stylelint

* feat(frontend): add missing styles for breadcrumb

---------

Co-authored-by: einhornimmond <dario.rekowski@gmx.de>
2024-10-15 16:06:34 +02:00

18 lines
246 B
Vue

<template>
<div>
<slot name="item" />
<slot :name="typeId"></slot>
</div>
</template>
<script>
export default {
name: 'TransactionListItem',
props: {
typeId: {
type: String,
required: true,
},
},
}
</script>