diff --git a/src/App.vue b/src/App.vue index 2adc45b..7b270fd 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,5 +3,6 @@ About Reference ID Tracker Interactions Flow + Customer Account diff --git a/src/router/index.js b/src/router/index.js index 38f5db3..d1790a1 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -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({ diff --git a/src/views/CustomerAccountView.vue b/src/views/CustomerAccountView.vue new file mode 100644 index 0000000..24aaf6f --- /dev/null +++ b/src/views/CustomerAccountView.vue @@ -0,0 +1,82 @@ + + +