import {ref} from "vue"; interface Notification { message: string } export const notifications = ref>([]); export function addNotification(){ notifications.value.push({message: 'test'}); }