From 4bdd665d1f5b055d67dd64d02e4fe77eb3dcca42 Mon Sep 17 00:00:00 2001 From: dderbentsov Date: Sun, 17 Sep 2023 14:20:51 +0300 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=B1=D1=80=D0=B0=D0=BB=20=D1=81=D0=BF?= =?UTF-8?q?=D0=B8=D1=81=D0=BE=D0=BA=20=D0=BA=D0=BB=D0=B8=D0=B5=D0=BD=D1=82?= =?UTF-8?q?=D0=BE=D0=B2=20=D1=81=20=D0=B1=D0=BE=D0=BA=D0=BE=D0=B2=D0=BE?= =?UTF-8?q?=D0=B3=D0=BE=20=D0=BC=D0=B5=D0=BD=D1=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/TheSidebar.vue | 6 ------ src/router.js | 2 -- 2 files changed, 8 deletions(-) diff --git a/src/components/TheSidebar.vue b/src/components/TheSidebar.vue index 3ca515b..35e34eb 100644 --- a/src/components/TheSidebar.vue +++ b/src/components/TheSidebar.vue @@ -34,12 +34,6 @@ export default { active: true, icon: "calendar", }, - { - id: "user", - path: "#/clients", - active: false, - icon: "clients", - }, { id: "medcards", path: "#/medcards", diff --git a/src/router.js b/src/router.js index f1baef6..25482a7 100644 --- a/src/router.js +++ b/src/router.js @@ -1,6 +1,5 @@ import { createRouter, createWebHashHistory } from "vue-router"; import TheCalendar from "@/pages/newCalendar/TheCalendar"; -import TheUser from "@/pages/clients/TheClients"; import TheSettings from "@/pages/settings/TheSettings"; import TheMedcards from "@/pages/medcards/TheMedcards"; import TheLogin from "@/pages/login/TheLogin"; @@ -37,7 +36,6 @@ export default createRouter({ children: [ { path: "", redirect: "calendar" }, { path: "calendar", component: TheCalendar }, - { path: "clients", component: TheUser }, { path: "medcards", component: TheMedcards }, { path: "settings", component: TheSettings }, { path: "medical-card/:id", component: TheMedicalCard },