убрал список клиентов с бокового меню
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
@@ -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 },
|
||||||
|
|||||||
Reference in New Issue
Block a user