diff --git a/src/router.js b/src/router.js index bbfd08c..ca04f47 100644 --- a/src/router.js +++ b/src/router.js @@ -6,7 +6,8 @@ const Forms = () => import("./components/categories/Forms"); const Navbars = () => import("./components/categories/Navbars"); const Heros = () => import("./components/categories/Heros"); const Sections = () => import("./components/categories/Sections"); -const SignInAndRegistration = () => import("./components/categories/Sign-inAndRegistration"); +const SignInAndRegistration = () => + import("./components/categories/Sign-inAndRegistration"); const Paginations = () => import("./components/categories/Paginations"); const Footers = () => import("./components/categories/Footers"); @@ -20,7 +21,11 @@ export default new VueRouter({ { path: "/navbars", component: Navbars, name: "Navbars" }, { path: "/heros", component: Heros, name: "Heros" }, { path: "/sections", component: Sections, name: "Sections" }, - { path: "/sign-in-and-registration", component: SignInAndRegistration, name: "Sign-in and Registration" }, + { + path: "/sign-in-and-registration", + component: SignInAndRegistration, + name: "Sign-in and Registration", + }, { path: "/paginations", component: Paginations, name: "Paginations" }, { path: "/footers", component: Footers, name: "Footers" }, ],