Added native os notifications

This commit is contained in:
2026-07-01 22:11:24 +10:00
parent d1b50e2f1a
commit 84379baf6a
19 changed files with 213 additions and 39 deletions
+2
View File
@@ -8,6 +8,7 @@ import {router, usePage} from "@inertiajs/vue3";
import { ref } from "vue";
import NotificationListener from "@/Components/FlightsGoneBy/NotificationListener.vue";
import {SharedProps} from "@/Types/types";
import PushNotificationPrompt from "@/Components/PushNotificationPrompt.vue";
const transitionKey = ref(0);
const page = usePage<SharedProps>().props
@@ -31,6 +32,7 @@ router.on('success', () => {
<NotificationListener v-if="page.auth.user?.id" :user-id="page.auth.user?.id" />
<StatusNotifications />
<ToastNotifications />
<PushNotificationPrompt v-if="page.auth.user?.id" />
</Radar>
</template>