big milestone!
This commit is contained in:
parent
2b35d6f39b
commit
ac906ca6c9
28 changed files with 1332 additions and 16 deletions
|
|
@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'
|
|||
import Home from '@/pages/Home.vue'
|
||||
import Directory from '@/pages/Directory.vue'
|
||||
import FAQ from '@/pages/FAQ.vue'
|
||||
import Support from '@/pages/Support.vue'
|
||||
|
||||
const router = createRouter({
|
||||
history: createWebHistory(),
|
||||
|
|
@ -26,6 +27,11 @@ const router = createRouter({
|
|||
name: 'directory-item',
|
||||
component: () => import('@/pages/DirectoryItem.vue'),
|
||||
props: true
|
||||
},
|
||||
{
|
||||
path: '/support',
|
||||
name: 'support',
|
||||
component: Support
|
||||
}
|
||||
]
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue