From 2ee428500d663864b388ef6b07e44a7856ed206f Mon Sep 17 00:00:00 2001 From: Astrian Zheng Date: Sat, 24 May 2025 13:18:43 +1000 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B0=83=E6=95=B4=E5=B8=83=E5=B1=80?= =?UTF-8?q?=E5=B9=B6=E6=B7=BB=E5=8A=A0=E6=90=9C=E7=B4=A2=E6=A0=8F=E7=BB=84?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 `Home.vue` 中调整了网格布局并添加了专辑链接 - 在 `Playing.vue` 中增加了底部播放栏的高度 - 新增 `SearchBar.vue` 组件,用于搜索功能 - 在 `App.vue` 中重构了顶部导航栏并集成了搜索栏 --- src/App.vue | 37 ++++++++++++++++++++++++++++-------- src/components/Playing.vue | 2 +- src/components/SearchBar.vue | 20 +++++++++++++++++++ src/pages/Home.vue | 9 +++++---- 4 files changed, 55 insertions(+), 13 deletions(-) create mode 100644 src/components/SearchBar.vue diff --git a/src/App.vue b/src/App.vue index fc95ef4..4c8ccd8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,17 +1,38 @@