mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
17 lines
221 B
Vue
17 lines
221 B
Vue
<template>
|
|
<div>
|
|
<slot :name="typeId"></slot>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'TransactionListItem',
|
|
props: {
|
|
typeId: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
}
|
|
</script>
|