valaxy-theme-hairy 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
@@ -16,9 +16,9 @@ const router = useRouter()
|
|
16
16
|
const post = computed(() => {
|
17
17
|
const clone = [...props.posts].map(v => ({
|
18
18
|
...v,
|
19
|
-
date: v.
|
20
|
-
? v.
|
21
|
-
: new Date(v.
|
19
|
+
date: v.date instanceof Date
|
20
|
+
? v.date.valueOf()
|
21
|
+
: new Date(v.date || Date.now()).valueOf(),
|
22
22
|
}))
|
23
23
|
clone.sort((b, a) => a.date - b.date)
|
24
24
|
return clone[0]
|
@@ -64,7 +64,7 @@ function displayCategory(keys: string | string[] = []) {
|
|
64
64
|
<div class="lt-md:hidden flex items-center gap-2">
|
65
65
|
<div class="i-material-symbols-folder-open-rounded text-14px" />
|
66
66
|
<ElTag size="small" class="dark:bg-dark-50 cursor-pointer border-none!" @click="displayCategory(post.categories)">
|
67
|
-
{{ post.categories }}
|
67
|
+
{{ toArray(post.categories).map($t).join('/') }}
|
68
68
|
</ElTag>
|
69
69
|
</div>
|
70
70
|
</template>
|