Add basic text editor

This commit is contained in:
Johannes Zellner
2023-02-26 23:34:31 +01:00
parent d7c3a6cec9
commit 1f16ca7e01
9 changed files with 551 additions and 29 deletions
+2
View File
@@ -12,9 +12,11 @@ import { createRouter, createWebHashHistory } from 'vue-router';
import App from './App.vue';
import Login from './views/Login.vue';
import Home from './views/Home.vue';
import Viewer from './views/Viewer.vue';
const routes = [
{ path: '/home/:appId?/:currentPath*', component: Home },
{ path: '/viewer/:appId/:filePath*', component: Viewer },
{ path: '/login', component: Login },
];