Start implementation of branches, new form element tabledropdown, model improvements
This commit is contained in:
26
frontend/src/router/falukantRoutes.js
Normal file
26
frontend/src/router/falukantRoutes.js
Normal file
@@ -0,0 +1,26 @@
|
||||
import BranchView from '../views/falukant/BranchView.vue';
|
||||
import Createview from '../views/falukant/CreateView.vue';
|
||||
import FalukantOverviewView from '../views/falukant/OverviewView.vue';
|
||||
|
||||
const falukantRoutes = [
|
||||
{
|
||||
path: '/falukant/create',
|
||||
name: 'FalukantCreate',
|
||||
component: Createview,
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/falukant/home',
|
||||
name: 'FalukantOverview',
|
||||
component: FalukantOverviewView,
|
||||
meta: { requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/falukant/branch/:branchId?',
|
||||
name: 'BranchView',
|
||||
component: BranchView,
|
||||
meta: { requiresAuth: true },
|
||||
},
|
||||
];
|
||||
|
||||
export default falukantRoutes;
|
||||
Reference in New Issue
Block a user