feat: add AttributionsView
This commit is contained in:
parent
e7ffb63e43
commit
0683ff26c5
3 changed files with 45 additions and 0 deletions
|
@ -5,6 +5,7 @@ import HomeIcon from "@/assets/icons/HomeIcon.vue";
|
|||
import IdCardIcon from "@/assets/icons/IdCardIcon.vue";
|
||||
import PaletteIcon from "@/assets/icons/PaletteIcon.vue";
|
||||
import BriefcaseIcon from "@/assets/icons/BriefcaseIcon.vue";
|
||||
import CircleInfoIcon from "@/assets/icons/CircleInfoIcon.vue";
|
||||
|
||||
const router = createRouter({
|
||||
history: createWebHistory(import.meta.env.BASE_URL),
|
||||
|
@ -48,6 +49,15 @@ const router = createRouter({
|
|||
icon: BriefcaseIcon,
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/attributions",
|
||||
name: "attributions",
|
||||
component: () => import("@/views/AttributionsView.vue"),
|
||||
meta: {
|
||||
title: "Attributions",
|
||||
icon: CircleInfoIcon
|
||||
}
|
||||
}
|
||||
],
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue