Merge remaining frontend into dashboard

This commit is contained in:
Johannes Zellner
2024-10-04 21:37:17 +02:00
parent 9d7f12952d
commit 9f06b91399
528 changed files with 116 additions and 2658 deletions

View File

@@ -0,0 +1,22 @@
<template>
<!-- router-view needs some fake node first for some unknown reason -->
<span></span>
<router-view></router-view>
</template>
<script>
export default {
data() {
return {
};
},
mounted() {
if (!localStorage.token) console.error('Set localStorage.token')
}
};
</script>
<style scoped>
</style>