add contract-formpage
This commit is contained in:
Vendored
+33
-1
@@ -51,6 +51,9 @@ import AdminIndex from './components/demo/admin/index.vue';
|
||||
import ManageAccountAdd from './components/demo/admin/admin/add.vue';
|
||||
|
||||
import ManagePembiayaan from './components/demo/admin/admin/pembiayaan.vue';
|
||||
import ManageBelianKomoditi from './components/demo/admin/admin/beliankomoditi.vue';
|
||||
import ManageKontrakMurabahah from './components/demo/admin/admin/kontrakmurabahah.vue';
|
||||
import CetakPermohonan from './components/demo/admin/admin/cetakpermohonan.vue';
|
||||
|
||||
|
||||
const default_component = {
|
||||
@@ -313,7 +316,36 @@ export default [
|
||||
path: '/pembiayaan',
|
||||
name: 'Pembiayaan',
|
||||
component: ManagePembiayaan
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
path: '/beliankomoditi',
|
||||
name: 'BelianKomoditi',
|
||||
component: ManageBelianKomoditi
|
||||
},
|
||||
|
||||
{
|
||||
path: '/kontrakmurabahah',
|
||||
name: 'KontrakMurabahah',
|
||||
component: ManageKontrakMurabahah
|
||||
},
|
||||
{
|
||||
path: '/cetakpermohonan',
|
||||
name: 'CetakPermohonan',
|
||||
component: CetakPermohonan
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
path: '/:pathMatch(.*)*',
|
||||
name: 'NotFound',
|
||||
component: {
|
||||
template: '<div class="text-center mt-5">Not found: {{ $route.path }}</div>'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user