mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-26 11:38:15 +08:00
64 lines
1.1 KiB
Vue
64 lines
1.1 KiB
Vue
<script lang="ts" setup>
|
|
import AutoLink from './AutoLink.vue'
|
|
|
|
defineProps<{
|
|
postList: {
|
|
title: string
|
|
path: string
|
|
createTime: string
|
|
}[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<ul class="post-list">
|
|
<li v-for="post in postList" :key="post.path">
|
|
<p class="post-title">
|
|
<AutoLink class="post-link" :href="post.path">
|
|
{{ post.title }}
|
|
</AutoLink>
|
|
</p>
|
|
<span class="post-time">{{ post.createTime }}</span>
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.post-list {
|
|
margin-top: 32px;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.post-list li {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin: 14px 0;
|
|
color: var(--vp-c-text-1);
|
|
}
|
|
|
|
.post-list .post-title {
|
|
flex: 1;
|
|
margin-right: 14px;
|
|
font-weight: 600;
|
|
transition: all var(--t-color);
|
|
display: -webkit-box;
|
|
overflow: hidden;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 1;
|
|
line-clamp: 1;
|
|
}
|
|
|
|
.post-list .post-time {
|
|
color: var(--vp-c-text-3);
|
|
transition: all var(--t-color);
|
|
}
|
|
|
|
.post-list li:hover .post-title {
|
|
color: var(--vp-c-brand-1);
|
|
}
|
|
.post-list li:hover .post-time {
|
|
color: var(--vp-c-text-2);
|
|
}
|
|
</style>
|