@@ -111,11 +114,10 @@ export default {
align-items: center
font-size: 12px
line-height: 12px
+ color: #888888
.article-item-meta:not(:last-child)
margin-bottom: 3px
margin-right: 20px
- .article-item-time
- color: #888888
.article-item:last-child
border: none
.article-pagination-wrap
diff --git a/docs/en/developer-guide/How-to-Share-blogs.md b/docs/en/developer-guide/How-to-Share-blogs.md
index 14165cba781abe..064940fcefee20 100644
--- a/docs/en/developer-guide/How-to-Share-blogs.md
+++ b/docs/en/developer-guide/How-to-Share-blogs.md
@@ -36,6 +36,7 @@ To write a blog file, you must first include Front Matter information in the hea
| title| - | Blog title|
| description | - | Blog description|
| date | - | Blog date |
+| author | - | Blog author |
| metaTitle | article | Mark blog file |
| language | en/zn-CN | language |
| layout | Article | Layout of the components |
@@ -50,6 +51,7 @@ File header example:
"title": "This is title",
"description": "This is description",
"date": "2021-11-03",
+ "author": "Alex",
"metaTitle": "article",
"language": "zh-CN",
"layout": "Article",
diff --git a/docs/zh-CN/developer-guide/How-to-Share-blogs.md b/docs/zh-CN/developer-guide/How-to-Share-blogs.md
index e482184b520c7c..f0d257c632a4fc 100644
--- a/docs/zh-CN/developer-guide/How-to-Share-blogs.md
+++ b/docs/zh-CN/developer-guide/How-to-Share-blogs.md
@@ -36,6 +36,7 @@ under the License.
| title| - | Blog标题|
| description | - | Blog描述|
| date | - | Blog发布时间 |
+| author | - | Blog作者 |
| metaTitle | article | 标记Blog文件 |
| language | en/zn-CN | 语言 |
| layout | Article | 布局组件 |
@@ -50,6 +51,7 @@ under the License.
"title": "This is title",
"description": "This is description",
"date": "2021-11-03",
+ "author": "Alex",
"metaTitle": "article",
"language": "zh-CN",
"layout": "Article",
From c3b0661705146b69a2e603532c1fbcf466d92f28 Mon Sep 17 00:00:00 2001
From: wangyongfeng <943155336@qq.com>
Date: Wed, 15 Dec 2021 15:03:53 +0800
Subject: [PATCH 07/12] =?UTF-8?q?=E5=BC=80=E5=8F=91=E6=A1=88=E4=BE=8B?=
=?UTF-8?q?=E5=88=97=E8=A1=A8=E7=BB=84=E4=BB=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/.vuepress/components/CaseList.vue | 84 ++++++++++++++++++++++++
docs/.vuepress/theme/components/Home.vue | 4 +-
2 files changed, 86 insertions(+), 2 deletions(-)
create mode 100644 docs/.vuepress/components/CaseList.vue
diff --git a/docs/.vuepress/components/CaseList.vue b/docs/.vuepress/components/CaseList.vue
new file mode 100644
index 00000000000000..a9151cbd780014
--- /dev/null
+++ b/docs/.vuepress/components/CaseList.vue
@@ -0,0 +1,84 @@
+
+
+
+
+ {{ data.cases.title }}
+
+
+ {{ data.cases.subTitle }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/.vuepress/theme/components/Home.vue b/docs/.vuepress/theme/components/Home.vue
index 2c0ba6a17ba7ea..54945dc81caa73 100644
--- a/docs/.vuepress/theme/components/Home.vue
+++ b/docs/.vuepress/theme/components/Home.vue
@@ -138,7 +138,7 @@ under the License.