decisions
This commit is contained in:
parent
562f6ab1f2
commit
0d559c9365
13 changed files with 78 additions and 11 deletions
|
@ -157,44 +157,44 @@ const router = createRouter({
|
|||
{
|
||||
path: "",
|
||||
name: "admin-club-protocol",
|
||||
component: () => import("@/views/admin/protocol/Protocol.vue"),
|
||||
component: () => import("@/views/admin/club/protocol/Protocol.vue"),
|
||||
beforeEnter: [resetProtocolStores],
|
||||
},
|
||||
{
|
||||
path: ":protocolId",
|
||||
name: "admin-club-protocol-routing",
|
||||
component: () => import("@/views/admin/protocol/ProtocolRouting.vue"),
|
||||
component: () => import("@/views/admin/club/protocol/ProtocolRouting.vue"),
|
||||
beforeEnter: [setProtocolId],
|
||||
props: true,
|
||||
children: [
|
||||
{
|
||||
path: "overview",
|
||||
name: "admin-club-protocol-overview",
|
||||
component: () => import("@/views/admin/protocol/ProtocolOverview.vue"),
|
||||
component: () => import("@/views/admin/club/protocol/ProtocolOverview.vue"),
|
||||
props: true,
|
||||
},
|
||||
{
|
||||
path: "precense",
|
||||
name: "admin-club-protocol-precense",
|
||||
component: () => import("@/views/admin/protocol/ProtocolPrecense.vue"),
|
||||
component: () => import("@/views/admin/club/protocol/ProtocolPrecense.vue"),
|
||||
props: true,
|
||||
},
|
||||
{
|
||||
path: "voting",
|
||||
name: "admin-club-protocol-voting",
|
||||
component: () => import("@/views/admin/protocol/ProtocolVoting.vue"),
|
||||
component: () => import("@/views/admin/club/protocol/ProtocolVoting.vue"),
|
||||
props: true,
|
||||
},
|
||||
{
|
||||
path: "decisions",
|
||||
name: "admin-club-protocol-decisions",
|
||||
component: () => import("@/views/admin/protocol/ProtocolDecisions.vue"),
|
||||
component: () => import("@/views/admin/club/protocol/ProtocolDecisions.vue"),
|
||||
props: true,
|
||||
},
|
||||
{
|
||||
path: "protocol",
|
||||
name: "admin-club-protocol-protocol",
|
||||
component: () => import("@/views/admin/protocol/ProtocolProtocol.vue"),
|
||||
component: () => import("@/views/admin/club/protocol/ProtocolProtocol.vue"),
|
||||
props: true,
|
||||
},
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue