-
-
+
+
+
+ Du wirst in
+ einer Sekunde
+ {{ redirectCountdown }} Sekunden
+ auf die Startseite geleitet.
+
+
+
+
Deine letzten 20 Aktivitäten
+
+ -
+ {{ articleActionLog.createdAtFormatted }}
+
+ Du hast den Artikel "{{
+ articleActionLog.article.name
+ }}" am
+ {{
+ articleActionLog.deletedAtFormatted
+ }}
+ storniert.
+
+
+ Du hast den Artikel "{{
+ articleActionLog.article.name
+ }}" gekauft.
+
+ [stornieren]
+
+
+
+
+
-
-
+
diff --git a/resources/js/app.js b/resources/js/app.js
index 9281b65..4a7ce81 100644
--- a/resources/js/app.js
+++ b/resources/js/app.js
@@ -1,7 +1,7 @@
import { createApp, h } from "vue";
import { resolvePageComponent } from "laravel-vite-plugin/inertia-helpers";
-import { createInertiaApp } from "@inertiajs/inertia-vue3";
+import { createInertiaApp } from "@inertiajs/vue3";
import { library } from "@fortawesome/fontawesome-svg-core";
import {
faArrowLeft,
@@ -26,7 +26,7 @@ import VueQrcode from "@chenfengyuan/vue-qrcode";
import axios from "axios";
import VueAxios from "vue-axios";
//import { InertiaProgress } from '@inertiajs/progress'
-import { Inertia } from "@inertiajs/inertia";
+import { router } from "@inertiajs/vue3";
import NProgress from "nprogress";
// fontawesome
@@ -49,8 +49,8 @@ library.add(
faGlassWater
);
-Inertia.on("start", () => NProgress.start());
-Inertia.on("finish", () => NProgress.done());
+router.on("start", () => NProgress.start());
+router.on("finish", () => NProgress.done());
createInertiaApp({
resolve: (name) =>