Feat(front): move all to front

This commit is contained in:
2023-06-06 14:02:04 +02:00
parent db56f7cbbd
commit 17d98ae277
19 changed files with 12117 additions and 10314 deletions

View File

@@ -0,0 +1,21 @@
<template>
<div class="content">
Content
</div>
</template>
<script>
export default {
name: 'Content',
props: {
msg: String
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.content {
background-color: red;
}
</style>

View File

@@ -0,0 +1,21 @@
<template>
<nav>
<router-link to="/"> Home </router-link>
<router-link to="/config"> Config </router-link>
</nav>
</template>
<script>
export default {
name: 'Nav',
props: {
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
nav {
background-color: green;
}
</style>