Frontend created and rewritten a few times, with some backend fixes #1

Merged
leo merged 110 commits from plaintable into main 2023-11-08 20:38:40 +00:00
Showing only changes of commit 5cf133465e - Show all commits

View File

@ -1,20 +1,15 @@
import { createRouter, createWebHashHistory, createWebHistory } from 'vue-router'
import { createRouter, createWebHashHistory } from 'vue-router'
import ExplorerView from '../views/ExplorerView.vue'
import LoginView from '../views/LoginView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
history: createWebHashHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/#/:location',
path: '/:pathMatch(.*)*',
name: 'explorer',
component: ExplorerView,
},
{
path: '/login',
name: 'login',
component: LoginView,
},
]
})