WIP: Alpha version bugfixes

This commit is contained in:
Jesse Malotaux 2025-04-13 13:07:15 +02:00
parent fd9430dbc6
commit cb5516f863
18 changed files with 474 additions and 144 deletions

View file

@ -1,6 +1,5 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import { useDeviceStore } from '@/stores/device'
import DashboardView from '../views/DashboardView.vue'
import { checkAuth, isLocal } from '@/services/ApiService'
const router = createRouter({
@ -8,8 +7,8 @@ const router = createRouter({
routes: [
{
path: '/',
name: 'home',
component: HomeView,
name: 'dashboard',
component: DashboardView,
},
{
path: '/panels',