formated and linted

This commit is contained in:
Elmar Kresse
2023-10-17 21:16:58 +02:00
parent 4148b0c185
commit 10d0ae0d8a
23 changed files with 581 additions and 378 deletions

View File

@@ -1,5 +1,4 @@
<script setup lang="ts">
import { Ref, ref } from "vue";
import { Module } from "../model/module";
import moduleStore from "../store/moduleStore";
@@ -21,27 +20,37 @@ function loadCalendar() {
modules.value = data;
});
router.push("/edit-additional-modules")
router.push("/edit-additional-modules");
}
</script>
<template>
<div class="flex flex-column">
<div class="flex align-items-center justify-content-center h-4rem mt-2">
<h3 class="text-2xl">Edit your HTWKalender <i class="pi pi-calendar vertical-align-baseline" style="font-size: 2rem"></i></h3>
<h3 class="text-2xl">
Edit your HTWKalender
<i
class="pi pi-calendar vertical-align-baseline"
style="font-size: 2rem"
></i>
</h3>
</div>
<div class="flex align-items-center justify-content-center h-4rem border-round">
<div
class="flex align-items-center justify-content-center h-4rem border-round"
>
<p class="text-2xl">Please enter your existing calendar token</p>
</div>
<div class="flex align-items-center justify-content-center border-round m-2">
<InputText type="text" v-model="token" />
<div
class="flex align-items-center justify-content-center border-round m-2"
>
<InputText v-model="token" type="text" />
</div>
<div class="flex align-items-center justify-content-center border-round m-2">
<div
class="flex align-items-center justify-content-center border-round m-2"
>
<Button label="Load Calendar" @click="loadCalendar" />
</div>
</div>
</template>
<style scoped>
</style>
<style scoped></style>