This commit is contained in:
khatabwedaa
2020-06-11 22:10:55 +02:00
parent 215d615bd4
commit 8679676886
40 changed files with 32 additions and 116 deletions

View File

@@ -0,0 +1,15 @@
import VueRouter from "vue-router";
const Alerts = () =>
import("./components/categories/Alerts");
export default new VueRouter({
routes: [
{
path: "/alerts",
component: Alerts,
name: "Alerts",
},
],
});