add socketio to app

This commit is contained in:
Julian Krauser 2025-07-15 11:52:44 +02:00
parent a6892bac85
commit 9ef76a7c26
3 changed files with 84 additions and 3 deletions

View file

@ -8,7 +8,7 @@ export interface Notification {
indicator: boolean;
}
export type NotificationType = "info" | "warning" | "error";
export type NotificationType = "info" | "warning" | "error" | "success";
export const useNotificationStore = defineStore("notification", {
state: () => {