убрал список клиентов с бокового меню

This commit is contained in:
dderbentsov
2023-09-17 14:20:51 +03:00
parent 297f11952b
commit 4bdd665d1f
2 changed files with 0 additions and 8 deletions

View File

@@ -34,12 +34,6 @@ export default {
active: true, active: true,
icon: "calendar", icon: "calendar",
}, },
{
id: "user",
path: "#/clients",
active: false,
icon: "clients",
},
{ {
id: "medcards", id: "medcards",
path: "#/medcards", path: "#/medcards",

View File

@@ -1,6 +1,5 @@
import { createRouter, createWebHashHistory } from "vue-router"; import { createRouter, createWebHashHistory } from "vue-router";
import TheCalendar from "@/pages/newCalendar/TheCalendar"; import TheCalendar from "@/pages/newCalendar/TheCalendar";
import TheUser from "@/pages/clients/TheClients";
import TheSettings from "@/pages/settings/TheSettings"; import TheSettings from "@/pages/settings/TheSettings";
import TheMedcards from "@/pages/medcards/TheMedcards"; import TheMedcards from "@/pages/medcards/TheMedcards";
import TheLogin from "@/pages/login/TheLogin"; import TheLogin from "@/pages/login/TheLogin";
@@ -37,7 +36,6 @@ export default createRouter({
children: [ children: [
{ path: "", redirect: "calendar" }, { path: "", redirect: "calendar" },
{ path: "calendar", component: TheCalendar }, { path: "calendar", component: TheCalendar },
{ path: "clients", component: TheUser },
{ path: "medcards", component: TheMedcards }, { path: "medcards", component: TheMedcards },
{ path: "settings", component: TheSettings }, { path: "settings", component: TheSettings },
{ path: "medical-card/:id", component: TheMedicalCard }, { path: "medical-card/:id", component: TheMedicalCard },