mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
add componente ContributionList.vue
This commit is contained in:
parent
50050e138f
commit
c3d62db1e5
17
frontend/src/components/Contributions/ContributionList.vue
Normal file
17
frontend/src/components/Contributions/ContributionList.vue
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<template>
|
||||||
|
<div class="contribution-list container">
|
||||||
|
<div v-for="item in items" :key="item.id" class="pb-3">
|
||||||
|
{{ item }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
items: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
Loading…
x
Reference in New Issue
Block a user