Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
mlaj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-03-21 11:45:28 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
37ffbb915ad13c229ce6df5144530396e88f2ddb
37ffbb91
1 parent
d3d4bc15
refactor(HomePage): 将ActivityCard包裹在div中以提高可维护性
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
src/views/HomePage.vue
src/views/HomePage.vue
View file @
37ffbb9
...
...
@@ -311,11 +311,9 @@
</router-link>
</div>
<div class="space-y-4">
<ActivityCard
v-for="activity in activities.slice(0, 3)"
:key="activity.id"
:activity="activity"
/>
<div v-for="activity in activities.slice(0, 3)" :key="activity.id">
<ActivityCard :activity="activity" />
</div>
</div>
</section>
...
...
Please
register
or
login
to post a comment