This commit is contained in:
2019-12-18 22:39:18 +00:00
parent 607207dce4
commit 3e7b927118
8 changed files with 19 additions and 42 deletions

View File

@@ -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")
}
]
});