blob: 110c23432b668ecf0666631feab737022bc4bd25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<template lang="pug">
.model.shadow-sm.rounded-lg.bg-white.p-4.w-full.h-80.duration-300(
class="hover:ease-out hover:shadow-md"
)
a(:href="'/models/'+model.id")
.image.bg-gray-900.rounded-xl.w-full.h-48.overflow-hidden
file-preview(
:path="model.uploads[0].filepath"
bg="#111827"
v-if="model.uploads"
)
.space-y-3.mt-5
h1.truncate.text-xl.font-medium
a(:href="'/models/'+model.id" class="hover:underline") {{ model.name }}
div
.mr-3.float-left
user-avatar(:data="model.author")
p.leading-8
a.text-green-800(class="hover:text-green-700" :href="'/user/'+model.author_id")
| @
span.underline {{ model.author.username }}
</template>
<script>
import UserAvatar from "@/components/UserAvatar.vue";
import FilePreview from "@/components/FilePreview.vue";
export default {
name: "ModelBoxCard",
props: ["model"],
components: {
"user-avatar": UserAvatar,
"file-preview": FilePreview,
},
data() {
return {
baseAPI: "",
};
},
created() {
this.baseAPI = this.$config.api;
},
};
</script>
|