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