From d8f152c40bd2e4abd51a6562bcc7f0125732df7f Mon Sep 17 00:00:00 2001 From: "iVampireSP.com" Date: Wed, 6 Dec 2023 09:49:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/default/AppBar.vue | 53 ++++++++++++++++++++++++--------- src/layouts/default/Default.vue | 16 +++++----- 2 files changed, 46 insertions(+), 23 deletions(-) diff --git a/src/layouts/default/AppBar.vue b/src/layouts/default/AppBar.vue index ce809f7..ed5b39d 100644 --- a/src/layouts/default/AppBar.vue +++ b/src/layouts/default/AppBar.vue @@ -1,20 +1,38 @@ @@ -22,7 +40,14 @@ import { ref } from "vue"; import { useConfigStore } from "@/store/config"; -const configStore = useConfigStore() +const configStore = useConfigStore(); const drawer = ref(false); + +const items = [ + { icon: "mdi-contacts", text: "Contacts", to: "/" }, + { icon: "mdi-history", text: "Frequently contacted", to: "/" }, + { icon: "mdi-content-copy", text: "Duplicates", to: "/" }, +]; + diff --git a/src/layouts/default/Default.vue b/src/layouts/default/Default.vue index 1cba597..14283c6 100644 --- a/src/layouts/default/Default.vue +++ b/src/layouts/default/Default.vue @@ -1,26 +1,24 @@