mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
69 lines
1.3 KiB
Vue
69 lines
1.3 KiB
Vue
<script lang="ts" setup>
|
|
import VPLink from '@theme/VPLink.vue'
|
|
|
|
const { postList } = defineProps<{
|
|
postList: {
|
|
title: string
|
|
path: string
|
|
createTime: string
|
|
}[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<ul class="vp-short-post-list">
|
|
<li v-for="post in postList" :key="post.path">
|
|
<p class="post-title">
|
|
<VPLink class="post-link" :href="post.path">
|
|
{{ post.title }}
|
|
</VPLink>
|
|
</p>
|
|
<span class="post-time">{{ post.createTime }}</span>
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.vp-short-post-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.vp-short-post-list li {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
color: var(--vp-c-text-1);
|
|
transition: color var(--vp-t-color);
|
|
}
|
|
|
|
.vp-short-post-list .post-title {
|
|
display: -webkit-box;
|
|
flex: 1 2;
|
|
margin-right: 14px;
|
|
overflow: hidden;
|
|
font-weight: 600;
|
|
transition: all var(--vp-t-color);
|
|
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 1;
|
|
line-clamp: 1;
|
|
}
|
|
|
|
.vp-short-post-list .post-time {
|
|
color: var(--vp-c-text-3);
|
|
transition: color var(--vp-t-color);
|
|
}
|
|
|
|
.vp-short-post-list li:hover .post-title {
|
|
color: var(--vp-c-brand-1);
|
|
}
|
|
|
|
.vp-short-post-list li:hover .post-time {
|
|
font-weight: 500;
|
|
color: var(--vp-c-text-1);
|
|
}
|
|
</style>
|