28 lines
799 B
Vue
28 lines
799 B
Vue
<template>
|
|
<div class="d-flex align-items-center ">
|
|
<ul class="list-group list-group-flush">
|
|
<li class="list-group-item d-flex justify-content-between align-items-center flex-wrap border-top-0 p-0">
|
|
<div class="d-flex flex-wrap align-items-center">
|
|
<ul class="list-unstyled users-list d-flex align-items-center avatar-group m-0 me-2">
|
|
<vote-in-complete-user-list-card :data="data" />
|
|
</ul>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import voteInCompleteUserListCard from '@c/voteboard/voteInCompleteUserListCard.vue';
|
|
const props = defineProps({
|
|
data: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|