-
Notifications
You must be signed in to change notification settings - Fork 622
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ffe55e
commit 043fd57
Showing
7 changed files
with
100 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,32 @@ | ||
<template> | ||
<section class="main"> | ||
<div class="container main-container left-main size-320"> | ||
<div class="left-container"> | ||
<div class="main-content no-padding no-bg topics-wrapper"> | ||
<div class="topics-nav"> | ||
<topics-nav /> | ||
</div> | ||
<div class="topics-main"> | ||
<load-more-async v-slot="{ results }" url="/api/topic/topics"> | ||
<topic-list :topics="results" show-sticky /> | ||
</load-more-async> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="right-container"> | ||
<check-in /> | ||
<site-notice /> | ||
<score-rank /> | ||
<friend-links /> | ||
</div> | ||
</div> | ||
</section> | ||
</template> | ||
|
||
<script setup> | ||
definePageMeta({ | ||
layout: "topics", | ||
}); | ||
useHead({ | ||
title: useSiteTitle(), | ||
}); | ||
</script> | ||
|
||
<template> | ||
<div class="topics-main"> | ||
<load-more-async v-slot="{ results }" url="/api/topic/topics"> | ||
<topic-list :topics="results" show-sticky /> | ||
</load-more-async> | ||
</div> | ||
</template> | ||
|
||
<style scoped></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters