From b852a83c18c7bfb6336b083c03964debe67a562e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?YESW=20=E6=9D=8E?= <143386944+YESWmeshade@users.noreply.github.com> Date: Tue, 23 Jul 2024 23:02:44 +0800 Subject: [PATCH] feat(searchtext): add a search value bind for search input (#59) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(searchbox): add box shadow * feat(searchtext): add searchtext * feat(searchtext): add variable searchtext * feat(searchtext): add a search value bind for search input * feat(searchtext): add a search value bind for search input --------- Co-authored-by: 苏向夜 <46275354+fu050409@users.noreply.github.com> --- src/views/index.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/views/index.vue b/src/views/index.vue index 1d331ca..cc0186d 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -17,6 +17,7 @@ const menu = shallowReactive([ }, ]); const activeMenu = ref(0); +const searchText = ref(''); const theme = ref( new Proxy( @@ -73,7 +74,12 @@ onMounted(async () => { - +