添加实例创建日期

This commit is contained in:
Guarp 2025-02-27 23:12:03 +08:00
parent e553404b0a
commit 33f5b32f37
2 changed files with 9 additions and 1 deletions

View File

@ -11,6 +11,7 @@ defineProps({
<div class="demo-details"> <div class="demo-details">
<h3>{{ demo.name }}</h3> <h3>{{ demo.name }}</h3>
<p class="author">{{ demo.author.join("、") }}</p> <p class="author">{{ demo.author.join("、") }}</p>
<p class="date">{{ demo.date }}</p>
<div class="tags"> <div class="tags">
<span v-for="tag in demo.tags" :key="tag" class="tag">{{ tag }}</span> <span v-for="tag in demo.tags" :key="tag" class="tag">{{ tag }}</span>
</div> </div>
@ -86,7 +87,12 @@ h3 {
opacity: 0.8; opacity: 0.8;
transition: opacity 0.3s ease; transition: opacity 0.3s ease;
} }
.date {
font-size: 15px;
margin: 5px 0;
opacity: 0.5;
transition: opacity 0.3s ease;
}
.demo-box:hover .author { .demo-box:hover .author {
opacity: 1; opacity: 1;
} }

View File

@ -8,11 +8,13 @@ const demos = ref([
{ {
id: 'board', id: 'board',
name: '留言板', name: '留言板',
date: '2024-10-6',
author: ["Mike Rong", "Louis Zhou"], author: ["Mike Rong", "Louis Zhou"],
tags: ['功能'] tags: ['功能']
},{ },{
id: 'pod', id: 'pod',
name: '在线练题', name: '在线练题',
date: '2025-2-26',
author: ["Louis Zhou"], author: ["Louis Zhou"],
tags: ['课内'], tags: ['课内'],
image: 'https://' + getDomain() + '/data/file/pod.png' image: 'https://' + getDomain() + '/data/file/pod.png'