Add admin page

This commit is contained in:
Jan Bader 2022-02-11 22:52:00 +00:00
parent 95d8e4fccc
commit 2e719b590e

17
web/src/pages/Admin.vue Normal file
View File

@ -0,0 +1,17 @@
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
mounted() {
document.title = "Budgeteer - Admin";
},
})
</script>
<template>
<h1>Danger Zone</h1>
<div class="budget-item">
<button>Clear database</button>
<p>This removes all data and starts from scratch. Not undoable!</p>
</div>
</template>