1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
Files
AdministrationItDepartmens/src/views/SupportView.vue
MoonTestUse1 e81df4c87e Initial commit
2024-12-23 19:27:44 +06:00

16 lines
506 B
Vue

<template>
<div class="bg-white rounded-lg shadow-lg p-4 sm:p-6">
<h2 class="text-xl sm:text-2xl font-semibold text-slate-800 mb-2">
Техническая поддержка
</h2>
<p class="text-sm sm:text-base text-slate-600 mb-4 sm:mb-6">
Заполните форму для создания заявки в IT-отдел
</p>
<RequestForm />
</div>
</template>
<script setup lang="ts">
import RequestForm from '@/components/request/RequestForm.vue';
</script>