1
0

Страница Архива

1. Добавлены новые методы
2. Добавлена страница архивных задач.
This commit is contained in:
2026-01-13 11:27:44 +07:00
parent 2d27abc48a
commit 7eb50ed503
6 changed files with 986 additions and 13 deletions

View File

@@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'
import MainApp from './views/MainApp.vue'
import LoginPage from './views/LoginPage.vue'
import TeamPage from './views/TeamPage.vue'
import ArchivePage from './views/ArchivePage.vue'
import { authApi, loadServerConfig } from './api'
// Флаг загрузки конфига (один раз за сессию)
@@ -30,6 +31,12 @@ const routes = [
component: TeamPage,
meta: { requiresAuth: true }
},
{
path: '/archive',
name: 'archive',
component: ArchivePage,
meta: { requiresAuth: true }
},
{
path: '/login',
name: 'login',