This commit is contained in:
2019-05-24 21:15:39 +00:00
parent b1640e0baa
commit b4fab723b6
3 changed files with 31 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ import dispatch from "./views/dispatch.vue";
import accounting from "./views/accounting.vue";
import administration from "./views/administration.vue";
import operations from "./views/operations.vue";
import notfound from "./views/notfound.vue";
Vue.use(Router);
@@ -75,6 +76,11 @@ export default new Router({
name: "inventory-widget-edit",
component: () =>
import(/* webpackChunkName: "inventory-widget-edit" */ "./views/inventory-widget-edit.vue")
},
{
path: "*",
name: "notfound",
component: notfound
}
]
});