#30 Added tipMessage and redirect to a PaymentCompleted page

This commit is contained in:
Dominic Villemure
2024-04-22 16:59:11 -04:00
parent 57e3115739
commit d5cadd713d
4 changed files with 61 additions and 107 deletions

View File

@@ -9,6 +9,7 @@ import LoginView from '../views/LoginView.vue'
import SignupView from '../views/SignupView.vue'
import ContactView from '../views/main/ContactView.vue'
import CreatorFolio from '../views/main/CreatorFolio.vue'
import PaymentCompleted from '../views/PayementCompleted.vue'
import HomeView from '../views/main/HomeView.vue'
import YourProfile from '../views/main/YourProfile.vue'
@@ -26,6 +27,11 @@ const router = createRouter({
name: 'creatorfolio',
component: CreatorFolio
},
{
path: '/paymentcompleted',
name: 'PayementCompleted',
component: PaymentCompleted
},
{
path: '/yourprofile',
name: 'yourprofile',