Convert Info notification to Success & Add an Info notification

This commit is contained in:
Bubka
2023-10-26 08:44:29 +02:00
parent 8c23aa884f
commit 910e0bc830
10 changed files with 19 additions and 15 deletions

View File

@ -52,6 +52,10 @@ export const useNotifyStore = defineStore({
},
info(notification) {
notify({ type: 'is-info', ...notification})
},
success(notification) {
notify({ type: 'is-success', ...notification})
},