add: form edit profile

This commit is contained in:
Alexandro Uc Santos
2024-04-03 19:58:25 -06:00
parent ef06521733
commit 4bc44038c2
9 changed files with 301 additions and 10 deletions

View File

@@ -20,7 +20,6 @@ export const useNotificationsStore = defineStore('notifications', () => {
});
const toggleProfile = () => {
console.log('click');
openProfile.value = !openProfile.value;
}
@@ -30,6 +29,6 @@ export const useNotificationsStore = defineStore('notifications', () => {
error,
show,
openProfile,
toggleProfile
toggleProfile,
}
});