Ferienverwaltung: created page with VUE Js, displaying Ferien and adding, deleting

This commit is contained in:
Alexei Karpenko
2026-02-23 18:40:37 +01:00
parent a57df7862c
commit c47a1cb627
8 changed files with 659 additions and 1 deletions
@@ -0,0 +1,29 @@
<?php
$includesArray = array(
'title' => 'Ferienverwaltung',
'axios027' => true,
'bootstrap5' => true,
'fontawesome6' => true,
'vue3' => true,
'filtercomponent' => true,
'navigationcomponent' => true,
'tabulator6' => true,
'primevue3' => true,
'vuedatepicker11' => true,
'customJSModules' => array('public/js/apps/lehre/Ferienverwaltung/Ferienverwaltung.js'),
);
$this->load->view('templates/FHC-Header', $includesArray);
?>
<div id="main">
<div id="content">
<div>
<ferienverwaltung></ferienverwaltung>
</div>
</div>
</div>
<?php $this->load->view('templates/FHC-Footer', $includesArray); ?>