🚧 Work in progress

This commit is contained in:
Freeze455
2021-08-17 11:18:28 +02:00
parent 404a5df44e
commit b178ea1ff2
7 changed files with 211 additions and 3 deletions

View File

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

View File

@@ -0,0 +1,14 @@
<template>
<Documentation>
dd
</Documentation>
</template>
<script setup lang="ts">
import Documentation from '../../../components/Documentation.vue'
</script>
<style>
</style>