Skip to content
Snippets Groups Projects
Commit 0f651d07 authored by Gilgard's avatar Gilgard
Browse files

refactor navbar

parent 5d328e11
No related branches found
No related tags found
1 merge request!66Frontend tests
......@@ -84,7 +84,7 @@ const routes = [
{
path: "/notifications",
name: "notifications",
component: () => import("../views/NavigationViews/NotificationView.vue"),
component: () => import("../components/BaseComponents/NotificationsForm.vue"),
beforeEnter: guardRoute,
},
{
......
<template>
<div>
<Navbar />
</div>
</template>
<script>
import Navbar from "@/components/NavigationComponents/NavBar";
export default {
name: "NavBarView",
components: {
Navbar,
},
};
</script>
<style scoped></style>
<template>
<div>
<NotificationsForm />
</div>
</template>
<script>
import NotificationsForm from "@/components/NavigationComponents/NotificationsForm";
export default {
name: "NotificationView.vue",
components: {
NotificationsForm,
},
};
</script>
<style scoped></style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment