🚧 Feat : implement navbar

This commit is contained in:
Freeze455
2021-08-17 00:29:58 +02:00
parent 74551ad831
commit 51e8a23f2c
8 changed files with 149 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
import { RouteRecordRaw } from 'vue-router'
import Home from './Home.vue'
const routes: RouteRecordRaw[] = [
{ path: '/', component: Home },
{ path: '/documentation', component: Home }
]
export default routes