* Page for single contract

feature: #9
This commit is contained in:
2023-01-06 00:34:35 +01:00
parent 49cd7b2c72
commit 0fc5cbe8e8
11 changed files with 331 additions and 22 deletions

View File

@@ -69,6 +69,15 @@ const router = createRouter({
requiresAuth: false
}
},
{
path: '/contract',
name: 'contract',
// this page is lazy-loaded when the route is visited.
component: () => import('../views/ContractView.vue'),
meta: {
requiresAuth: false
}
},
{
path: '/forbidden',
name: 'forbidden',