Redesign and reimplementing account page

This commit is contained in:
2024-10-05 21:00:39 +02:00
parent c54e6f3743
commit c050560fba
11 changed files with 209 additions and 168 deletions

View File

@@ -2,13 +2,24 @@
import cardView from '@/components/cardView.vue';
import confirmDialog from '@/components/confirmDialog.vue';
import outlinedButton from '@/components/outlinedButton.vue';
import { useAccountStore } from '@/data/stores/accountStore';
import { ref } from 'vue';
const showConfirmDialog = ref(false)
const updateInProgress = ref(false)
const accountStore = useAccountStore()
function deleteAccount() {
// todo
}
async function updateAccount() {
updateInProgress.value = true
await accountStore.updateAccount()
updateInProgress.value = false
}
</script>
<template>
@@ -26,6 +37,16 @@ function deleteAccount() {
{{ $t("account.delete") }}
</outlined-button>
</v-col>
<v-col class="d-flex justify-center align-center">
<outlined-button
prepend-icon="mdi-content-save"
color="green"
@click="updateAccount"
>
{{ $t("save") }}
</outlined-button>
</v-col>
</v-row>
</card-view>