Sort webapp du pmoserver dans la crate pmoapp

This commit is contained in:
2025-10-06 07:31:03 +02:00
parent 05a9c7100a
commit f87f467680
1243 changed files with 141 additions and 545245 deletions

29
pmoapp/webapp/src/App.vue Normal file
View File

@@ -0,0 +1,29 @@
<template>
<div>
<nav>
<router-link to="/">Accueil</router-link> |
<router-link to="/logs">Logs</router-link>
</nav>
<router-view />
</div>
</template>
<script setup lang="ts">
// rien à importer
</script>
<style scoped>
nav {
background: #333;
width: 100vw;
padding: 0.5rem;
}
a {
color: #eee;
margin: 0 0.5rem;
}
a.router-link-active {
font-weight: bold;
text-decoration: underline;
}
</style>