From a858332588101111cae61f9f6874483276d311fa Mon Sep 17 00:00:00 2001 From: Timotej Date: Tue, 27 Jan 2026 18:24:59 +0100 Subject: [PATCH] added payments page --- src/layouts/AppLayout.vue | 8 +++++++ src/pages/PaymentsPage.vue | 49 ++++++++++++++++++++++++++++++++++++++ src/router.ts | 2 ++ 3 files changed, 59 insertions(+) create mode 100644 src/pages/PaymentsPage.vue diff --git a/src/layouts/AppLayout.vue b/src/layouts/AppLayout.vue index 4c87a39..d64bbcb 100644 --- a/src/layouts/AppLayout.vue +++ b/src/layouts/AppLayout.vue @@ -6,6 +6,7 @@ const route = useRoute(); const isProducts = computed(() => route.path.startsWith("/products")); const isOrders = computed(() => route.path.startsWith("/orders")); +const isPayments = computed(() => route.path.startsWith("/payments")); const linkClass = (active: boolean) => [ @@ -43,6 +44,13 @@ const linkClass = (active: boolean) => Orders + + Payments + +