Tos Transactions

This commit is contained in:
PascalMarchesseault
2024-05-24 00:15:55 -04:00
parent 5f4946112b
commit d6250ccf20
3 changed files with 116 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ import FAQ from '@/views/tos/FAQ.vue'
import GuideForCreators from '@/views/tos/GuideForCreators.vue'
import HelpAndContact from '@/views/tos/HelpAndContact.vue'
import TermsAndConditions from '@/views/tos/TermsAndConditions.vue'
import Transactions from '@/views/tos/Transactions.vue'
import { createRouter, createWebHistory } from 'vue-router'
import LoginView from '../views/LoginView.vue'
import PaymentCompleted from '../views/PayementCompleted.vue'
@@ -95,6 +96,12 @@ const router = createRouter({
component: About
},
{
path: '/transactions',
name: 'transactions',
component: Transactions
},
{
path: '/Hutopy',
name: 'Hutopy',
@@ -130,6 +137,14 @@ const router = createRouter({
name: 'mathieucaron',
component: MathieuCaron
},
{
path: '/guillaumeaime',
name: 'guillaumeaime',
component: GuillaumeAime
},
],
scrollBehavior(to, from, savedPosition) {
return { top: 0 };