Fix routing (#43)

This commit is contained in:
Jonas Plum
2022-03-19 13:41:34 +01:00
committed by GitHub
parent 3618f9784d
commit e6baead486
7 changed files with 57 additions and 28 deletions

13
ui/src/views/NotFound.vue Normal file
View File

@@ -0,0 +1,13 @@
<template>
<v-main>
<div class="fill-height d-flex flex-row align-center justify-center">
<h1>Page not found :(</h1>
</div>
</v-main>
</template>
<script>
export default {
name: "NotFound"
}
</script>