Add admin page
This commit is contained in:
parent
95d8e4fccc
commit
2e719b590e
17
web/src/pages/Admin.vue
Normal file
17
web/src/pages/Admin.vue
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user