🔥 (text editor) remove text editor page

This commit is contained in:
Julien Calixte
2021-04-25 17:01:37 +02:00
parent 6366f6129b
commit e0981950d6
3 changed files with 56 additions and 109 deletions

View File

@@ -3,12 +3,6 @@ import { RouteRecordRaw, createRouter, createWebHistory } from 'vue-router'
import Home from '@/views/Home.vue'
const routes: Array<RouteRecordRaw> = [
{
path: '/text-editor',
name: 'TextEditor',
component: () =>
import(/* webpackChunkName: "text-editor" */ '@/views/TextEditor.vue')
},
{
path: '/login',
name: 'Login',
@@ -26,6 +20,13 @@ const routes: Array<RouteRecordRaw> = [
props: true,
component: Home
},
{
path: '/:user/:repo/share/:note',
name: 'ShareNotes',
props: true,
component: () =>
import(/* webpackChunkName: "share-notes" */ '@/views/ShareNotes.vue')
},
{
path: '/:user/:repo/inbox',
name: 'FleetingNotes',