add contact page
This commit is contained in:
parent
6e98825767
commit
4e03b0cacb
2 changed files with 557 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
|||
import { createRouter, createWebHistory } from 'vue-router'
|
||||
import HomePage from '@/views/HomePage.vue'
|
||||
import AboutPage from '@/views/AboutPage.vue'
|
||||
import ContactPage from '@/views/ContactPage.vue'
|
||||
import LoginPage from '@/views/LoginPage.vue'
|
||||
import MediaPage from '@/views/MediaPage.vue'
|
||||
import ElementPage from '@/views/ElementPage.vue'
|
||||
|
|
@ -25,6 +26,11 @@ const router = createRouter({
|
|||
name: 'about',
|
||||
component: AboutPage,
|
||||
},
|
||||
{
|
||||
path: '/contact',
|
||||
name: 'contact',
|
||||
component: ContactPage,
|
||||
},
|
||||
{
|
||||
path: '/media',
|
||||
name: 'media',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue