This commit is contained in:
@@ -254,6 +254,15 @@ export default new Router({
|
||||
import(/* webpackChunkName: "test" */ "./views/test-inventory.vue")
|
||||
},
|
||||
|
||||
{
|
||||
path: "/inventory/widget/edit/:id",
|
||||
name: "inventory-widget-edit",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "inventory" */ "./views/test-inventory-widget-edit.vue"
|
||||
)
|
||||
},
|
||||
|
||||
{
|
||||
path: "/vendors",
|
||||
name: "vendors",
|
||||
@@ -314,7 +323,7 @@ export default new Router({
|
||||
path: "/history",
|
||||
name: "history",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "administration" */ "./views/files.vue")
|
||||
import(/* webpackChunkName: "administration" */ "./views/history.vue")
|
||||
},
|
||||
|
||||
{
|
||||
@@ -360,7 +369,7 @@ export default new Router({
|
||||
/* webpackChunkName: "operations" */ "./views/notify-settings.vue"
|
||||
)
|
||||
},
|
||||
//**********************************OLD OLD OLD RENAME AND REMOVE */
|
||||
//**********************************GENERAL */
|
||||
{
|
||||
path: "/about",
|
||||
name: "about",
|
||||
@@ -376,41 +385,6 @@ export default new Router({
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "aybase" */ "./views/log.vue")
|
||||
},
|
||||
|
||||
{
|
||||
path: "/inventory/widget/edit/:id",
|
||||
name: "inventory-widget-edit",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "inventory" */ "./views/inventory-widget-edit.vue"
|
||||
)
|
||||
},
|
||||
{
|
||||
path: "/service",
|
||||
name: "service",
|
||||
component: service
|
||||
},
|
||||
{
|
||||
path: "/dispatch",
|
||||
name: "dispatch",
|
||||
component: dispatch
|
||||
},
|
||||
{
|
||||
path: "/accounting",
|
||||
name: "accounting",
|
||||
//meta: { scrollToTop: true },
|
||||
component: accounting
|
||||
},
|
||||
{
|
||||
path: "/admin",
|
||||
name: "administration",
|
||||
component: administration
|
||||
},
|
||||
{
|
||||
path: "/ops",
|
||||
name: "operations",
|
||||
component: operations
|
||||
},
|
||||
{
|
||||
path: "/customize/:formCustomTemplateKey",
|
||||
name: "customize",
|
||||
@@ -420,7 +394,8 @@ export default new Router({
|
||||
{
|
||||
path: "*",
|
||||
name: "notfound",
|
||||
component: notfound
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "aybase" */ "./views/notfound.vue")
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user