added CRUD for Projects,

added set project for report
This commit is contained in:
2026-08-22 23:48:15 +02:00
parent 369b3b7728
commit b747b586b3
17 changed files with 1118 additions and 65 deletions
+2
View File
@@ -6,6 +6,7 @@ import BugAdd from "./views/BugAdd.vue";
import Archive from "./views/Archive.vue";
import API from "./views/API.vue";
import Report from "./views/Report.vue";
import Projects from "./views/Projects.vue";
const routes = [
{ path: "/", component: Dashboard },
@@ -14,6 +15,7 @@ const routes = [
{ path: "/archive", component: Archive },
{ path: "/api", component: API },
{ path: "/report/:id", component: Report },
{ path: "/projects", component: Projects },
];
export const router = createRouter({