From 267ebd7bb3f03d3c69f27c3a6af7f10024b21032 Mon Sep 17 00:00:00 2001 From: liwei Date: Mon, 21 Jun 2021 11:22:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=90=9C=E7=B4=A2=E3=80=81?= =?UTF-8?q?=E5=86=85=E5=AE=B9=E5=AE=B9=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ContentContainer.vue | 12 +++++++ src/components/Layout.vue | 1 + src/components/NavMenu.vue | 1 + src/components/SearchTemplate.vue | 16 +++++++++ src/views/Home.vue | 50 ++++++++++++++++++++++++++++- 5 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 src/components/ContentContainer.vue create mode 100644 src/components/SearchTemplate.vue diff --git a/src/components/ContentContainer.vue b/src/components/ContentContainer.vue new file mode 100644 index 0000000..1b33435 --- /dev/null +++ b/src/components/ContentContainer.vue @@ -0,0 +1,12 @@ + + + + + diff --git a/src/components/Layout.vue b/src/components/Layout.vue index 80cab64..7fd26f7 100644 --- a/src/components/Layout.vue +++ b/src/components/Layout.vue @@ -52,6 +52,7 @@ export default { #content-box { width: 100%; height: 100%; + overflow-y: auto; } } diff --git a/src/components/NavMenu.vue b/src/components/NavMenu.vue index 929f867..82ed0a2 100644 --- a/src/components/NavMenu.vue +++ b/src/components/NavMenu.vue @@ -38,6 +38,7 @@ export default { diff --git a/src/views/Home.vue b/src/views/Home.vue index 6a17326..20bb567 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -1,11 +1,59 @@