nouvelle mise à jour de la webapp

This commit is contained in:
2025-10-18 14:35:19 +02:00
parent 0e7e3b5051
commit ecd49869b3
6 changed files with 967 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from "vue-router";
import HelloWorld from "../components/HelloWorld.vue";
import LogView from "../components/LogView.vue";
import CoverCacheManager from "../components/CoverCacheManager.vue";
import AudioCacheManager from "../components/AudioCacheManager.vue";
import UpnpExplorer from "../components/UpnpExplorer.vue";
import APIDashboard from "../components/APIDashboard.vue";
@@ -9,6 +10,7 @@ const routes = [
{ path: "/", name: "home", component: HelloWorld },
{ path: "/logs", name: "logs", component: LogView },
{ path: "/covers-cache", name: "covers-cache", component: CoverCacheManager },
{ path: "/audio-cache", name: "audio-cache", component: AudioCacheManager },
{ path: "/upnp", name: "upnp", component: UpnpExplorer },
{ path: "/api-dashboard", name: "api-dashboard", component: APIDashboard },
];