Skip to content

Commit cd1d289

Browse files
committed
VERSION 1.0.2
1 parent 147e455 commit cd1d289

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

components/HomeBlog.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<div class="home-blog-wrapper">
1111
<!-- 博客列表 -->
1212
<note-abstract
13+
v-if="showList"
1314
class="blog-list"
1415
:data="posts"
1516
:currentPage="1"></note-abstract>
@@ -86,7 +87,8 @@ export default {
8687
data () {
8788
return {
8889
recoShow: false,
89-
tags: []
90+
tags: [],
91+
showList: false
9092
}
9193
},
9294
computed: {
@@ -150,6 +152,7 @@ export default {
150152
},
151153
mounted () {
152154
this.recoShow = true
155+
this.showList = true
153156
},
154157
methods: {
155158
// 根据分类获取页面数据

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vuepress-theme-reco",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "this is a vuepress theme",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)