Added CustomerAccount view

This commit is contained in:
2023-07-11 01:18:48 +01:00
parent 0104776529
commit 956993c699
3 changed files with 90 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from "vue-router";
import HomeView from "../views/HomeView.vue";
import ReferenSearchByReferenceViewceID from "../views/SearchByReferenceView.vue";
import InteractionsFlowView from "../views/InteractionsFlowView.vue";
import CustomerAccountView from "../views/CustomerAccountView.vue";
const routes = [
{
@@ -28,6 +29,12 @@ const routes = [
name: "interactionsFlow",
component: InteractionsFlowView,
},
{
path: "/customerAccount/:accountNumber",
name: "customerAccount",
component: CustomerAccountView,
props: true,
},
];
const router = createRouter({