basic markdown rendering + routing for /imprint and /privacy

ref #3
This commit is contained in:
2021-03-03 19:14:26 +01:00
parent 747c1d2a90
commit 5a5261d6b0
9 changed files with 98 additions and 2 deletions

View File

@@ -22,6 +22,8 @@ const i18n = createI18n({
// ---------------
const Home = import('./components/Home.vue');
const Imprint = import('./components/Imprint.vue');
const Privacy = import('./components/Privacy.vue');
const Register = import('./components/Register.vue');
const Profile = import('./components/Profile.vue');
//
@@ -29,6 +31,8 @@ const router = createRouter({
history: createWebHistory(),
routes: [
{ path: '/', component: Home },
{ path: '/imprint', component: Imprint },
{ path: '/privacy', component: Privacy },
{ path: '/register', component: Register },
{ path: '/profile', component: Profile }
]