Fix ItPersonRow

This commit is contained in:
Daniel Egger 2022-12-14 18:59:09 +01:00
parent ad7474f1cf
commit 38114b55c5
1 changed files with 4 additions and 6 deletions

View File

@ -1,6 +1,4 @@
<script setup lang="ts">
import ItListRow from "./ItListRow.vue";
const props = defineProps<{
avatarUrl: string;
name: string;
@ -17,11 +15,11 @@ const props = defineProps<{
</div>
<div class="flex-1 flex items-center">
<slot name="center"></slot>
</template>
<template #link>
</div>
<div class="flex items-center">
<slot name="link"></slot>
</template>
</ItListRow>
</div>
</li>
</template>
<style lang="scss" scoped></style>