Initial commit

This commit is contained in:
Torsten Schulz
2024-07-17 22:24:56 +02:00
commit 3880a265eb
126 changed files with 10959 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<template>
<main>
<router-view></router-view>
</main>
</template>
<script>
export default {
name: 'AppContent'
};
</script>
<style scoped>
main {
padding: 20px;
background-color: #ffffff;
flex: 1;
}
</style>