This commit is contained in:
xds
2026-03-22 14:26:45 +03:00
parent 33694d68db
commit 466a27907a
28 changed files with 1334 additions and 71 deletions

View File

@@ -11,6 +11,9 @@ import AdminOrders from '../views/admin/AdminOrders.vue'
import AdminMaterials from '../views/admin/AdminMaterials.vue'
import AdminSettings from '../views/admin/AdminSettings.vue'
import AdminUsers from '../views/admin/AdminUsers.vue'
import AdminClients from '../views/admin/AdminClients.vue'
import AccountView from '../views/AccountView.vue'
import TrackView from '../views/TrackView.vue'
const routes = [
{
@@ -42,6 +45,18 @@ const routes = [
name: 'article',
component: ArticleView,
},
{
path: '/track',
name: 'track',
component: TrackView,
meta: { title: 'Проверка заказа — Filam3D' },
},
{
path: '/account',
name: 'account',
component: AccountView,
meta: { title: 'Личный кабинет — Filam3D' },
},
{
path: '/admin/login',
name: 'admin-login',
@@ -77,6 +92,12 @@ const routes = [
component: AdminSettings,
meta: { title: 'Настройки — Админ-панель Filam3D' },
},
{
path: 'clients',
name: 'admin-clients',
component: AdminClients,
meta: { title: 'Клиенты — Админ-панель Filam3D' },
},
{
path: 'users',
name: 'admin-users',