diff --git a/components/NoteAbstract/index.vue b/components/NoteAbstract/index.vue index a12bb7b..c228894 100644 --- a/components/NoteAbstract/index.vue +++ b/components/NoteAbstract/index.vue @@ -4,24 +4,21 @@ v-for="(item, index) in data" :key="index" v-if="((index + 1) > (currentPage - 1) * 10) && ((index + 1) <= currentPage * 10)" - class="abstract-item" - > + class="abstract-item">
- {{item.title}} -
- {{item.frontmatter.time?item.frontmatter.time:""}} - {{item.frontmatter.author?item.frontmatter.author:""}} -
+ {{item.title}}

- {{subItem}} + @click="goTags(subItem)"> + {{subItem}} +
@@ -29,51 +26,44 @@