This commit is contained in:
khatabwedaa
2020-06-12 14:36:10 +02:00
parent 5967af2ad3
commit 83a111bb9a
29 changed files with 878 additions and 474 deletions

View File

@@ -3,10 +3,18 @@ import VueRouter from "vue-router";
const Alerts = () =>
import("./components/categories/Alerts");
const Cards = () =>
import("./components/categories/Cards");
const Forms = () =>
import("./components/categories/Forms");
export default new VueRouter({
routes: [
// { path: '/', redirect: '/alerts' },
{ path: "/alerts", component: Alerts, name: "Alerts" },
{ path: "/cards", component: Cards, name: "Cards" },
{ path: "/forms", component: Forms, name: "Forms" },
],
});