Set up the Accounts view with components

This commit is contained in:
Bubka
2023-10-20 13:28:17 +02:00
parent 4055a52daf
commit 5f83b5d70b
11 changed files with 909 additions and 19 deletions

View File

@ -63,6 +63,10 @@ export const useNotifyStore = defineStore({
notify({ type: 'is-danger', ...notification})
},
action(notification) {
notify({ type: 'is-dark', ...notification})
},
clear() {
notify({ clean: true })
}