111 lines
3.3 KiB
JavaScript
111 lines
3.3 KiB
JavaScript
const BranchView = () => import('../views/falukant/BranchView.vue');
|
|
const Createview = () => import('../views/falukant/CreateView.vue');
|
|
const FalukantOverviewView = () => import('../views/falukant/OverviewView.vue');
|
|
const MoneyHistoryView = () => import('../views/falukant/MoneyHistoryView.vue');
|
|
const FamilyView = () => import('../views/falukant/FamilyView.vue');
|
|
const HouseView = () => import('../views/falukant/HouseView.vue');
|
|
const NobilityView = () => import('../views/falukant/NobilityView.vue');
|
|
const ReputationView = () => import('../views/falukant/ReputationView.vue');
|
|
const ChurchView = () => import('../views/falukant/ChurchView.vue');
|
|
const EducationView = () => import('../views/falukant/EducationView.vue');
|
|
const BankView = () => import('../views/falukant/BankView.vue');
|
|
const DirectorView = () => import('../views/falukant/DirectorView.vue');
|
|
const HealthView = () => import('../views/falukant/HealthView.vue');
|
|
const PoliticsView = () => import('../views/falukant/PoliticsView.vue');
|
|
const UndergroundView = () => import('../views/falukant/UndergroundView.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 },
|
|
},
|
|
{
|
|
path: '/falukant/moneyhistory',
|
|
name: 'MoneyHistoryView',
|
|
component: MoneyHistoryView,
|
|
meta: { requiresAuth: true },
|
|
},
|
|
{
|
|
path: '/falukant/family',
|
|
name: 'FalukantFamily',
|
|
component: FamilyView,
|
|
meta: { requiresAuth: true }
|
|
},
|
|
{
|
|
path: '/falukant/house',
|
|
name: 'HouseView',
|
|
component: HouseView,
|
|
meta: { requiresAuth: true },
|
|
},
|
|
{
|
|
path: '/falukant/nobility',
|
|
name: 'NobilityView',
|
|
component: NobilityView,
|
|
meta: { requiresAuth: true }
|
|
},
|
|
{
|
|
path: '/falukant/reputation',
|
|
name: 'ReputationView',
|
|
component: ReputationView,
|
|
meta: { requiresAuth: true }
|
|
},
|
|
{
|
|
path: '/falukant/church',
|
|
name: 'ChurchView',
|
|
component: ChurchView,
|
|
meta: { requiresAuth: true }
|
|
},
|
|
{
|
|
path: '/falukant/education',
|
|
name: 'EducationView',
|
|
component: EducationView,
|
|
meta: { requiresAuth: true }
|
|
},
|
|
{
|
|
path: '/falukant/bank',
|
|
name: 'BankView',
|
|
component: BankView,
|
|
meta: { requiresAuth: true }
|
|
},
|
|
{
|
|
path: '/falukant/directors',
|
|
name: 'DirectorView',
|
|
component: DirectorView,
|
|
meta: { requiresAuth: true }
|
|
},
|
|
{
|
|
path: '/falukant/health',
|
|
name: 'HealthView',
|
|
component: HealthView,
|
|
meta: { requiresAuth: true }
|
|
},
|
|
{
|
|
path: '/falukant/politics',
|
|
name: 'PoliticsView',
|
|
component: PoliticsView,
|
|
meta: { requiresAuth: true }
|
|
},
|
|
{
|
|
path: '/falukant/darknet',
|
|
name: 'UndergroundView',
|
|
component: UndergroundView,
|
|
meta: { requiresAuth: true }
|
|
},
|
|
];
|
|
|
|
export default falukantRoutes;
|