Added vuetify + test button, Added linter and format on save

This commit is contained in:
Dominic Villemure
2024-02-25 23:16:25 -05:00
parent 675f180034
commit 637ba69958
16 changed files with 1474 additions and 281 deletions

View File

@@ -14,17 +14,17 @@ const router = createRouter({
component: HomeView
},
{
path:'/creatorfolio',
path: '/creatorfolio',
name: 'creatorfolio',
component: CreatorFolio
},
{
path:'/yourprofile',
path: '/yourprofile',
name: 'yourprofile',
component: YourProfile
},
{
path:'/contact',
path: '/contact',
name: 'contact',
component: ContactView
},
@@ -38,7 +38,7 @@ const router = createRouter({
name: 'login',
component: LoginView
},
]
})