service_monitoring/front/app.vue

34 lines
743 B
Vue

<script setup lang="ts">
const links = [[
{
label: 'Состояние вендотеков',
icon: 'i-heroicons-credit-card',
to: '/vtk',
},
{ label: 'Офис', to: '/vtk/office' },
{ label: 'Парк', to: '/vtk/park' },
],
[
{
label: 'Вебхуки битрикса',
icon: 'i-heroicons-clipboard-document-list',
to: '/bx'
},
{ label: 'Gitea', to: '/bx/gitea' },
{ label: 'Tg', to: '/bx/tg' },
]]
</script>
<template>
<div class="container grid grid-cols-4 gap-4">
<div class="col-span-4">
<div class="center">svs-tech.pro</div>
</div>
<div>
<UVerticalNavigation :links="links" />
</div>
<div class="col-span-2">
<NuxtPage />
</div>
</div>
</template>