pridana implementacia backend s composerom a kniznicami TPsoft/APIlite a TPsoft/DBmodel

This commit is contained in:
2025-10-01 00:57:41 +02:00
parent 8184ffb46d
commit 1cf79a20b3
45 changed files with 907 additions and 58 deletions
+22
View File
@@ -0,0 +1,22 @@
import { createRouter, createWebHistory } from "vue-router";
import Dashboard from "./views/Dashboard.vue";
import About from "./views/About.vue";
import BugAdd from "./views/BugAdd.vue";
import Archive from "./views/Archive.vue";
import API from "./views/API.vue";
import Report from "./views/Report.vue";
const routes = [
{ path: "/", component: Dashboard },
{ path: "/about", component: About },
{ path: "/add", component: BugAdd },
{ path: "/archive", component: Archive },
{ path: "/api", component: API },
{ path: "/report/:id", component: Report },
];
export const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes,
});