2022-11-01 12:12:54 +00:00
|
|
|
<template>
|
2023-07-16 20:27:31 +00:00
|
|
|
<div class="flex flex-col flex-justify-between">
|
2022-11-01 12:12:54 +00:00
|
|
|
<router-link :to="props.item.url">
|
2023-07-16 20:27:31 +00:00
|
|
|
<div class="flex justify-center h-[10rem] mb-4">
|
|
|
|
<img class="aspect-square rounded-full" :src="props.item.thumbnail" loading="lazy" />
|
2022-11-01 12:12:54 +00:00
|
|
|
</div>
|
|
|
|
<p>
|
|
|
|
<span v-text="props.item.name" />
|
|
|
|
<font-awesome-icon class="ml-1.5" v-if="props.item.verified" icon="check" />
|
|
|
|
</p>
|
|
|
|
</router-link>
|
|
|
|
<p v-if="props.item.description" v-text="props.item.description" />
|
|
|
|
<router-link v-if="props.item.uploaderUrl" class="link" :to="props.item.uploaderUrl">
|
|
|
|
<p>
|
|
|
|
<span v-text="props.item.uploader" />
|
|
|
|
<font-awesome-icon class="ml-1.5" v-if="props.item.uploaderVerified" icon="check" />
|
|
|
|
</p>
|
|
|
|
</router-link>
|
|
|
|
|
|
|
|
<a v-if="props.item.uploaderName" class="link" v-text="props.item.uploaderName" />
|
|
|
|
<template v-if="props.item.videos >= 0">
|
|
|
|
<br v-if="props.item.uploaderName" />
|
|
|
|
<strong v-text="`${props.item.videos} ${$t('video.videos')}`" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<br />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
const props = defineProps({
|
|
|
|
item: Object,
|
|
|
|
});
|
|
|
|
</script>
|