mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2026-01-16 20:22:24 +01:00
37 lines
991 B
Vue
37 lines
991 B
Vue
<script lang="ts" setup>
|
|
import { defineAsyncComponent } from "vue";
|
|
import moduleStore from "../../store/moduleStore";
|
|
import router from "../../router";
|
|
|
|
const store = moduleStore();
|
|
const AdditionalModuleTable = defineAsyncComponent(
|
|
() => import("../../components/AdditionalModuleTable.vue"),
|
|
);
|
|
|
|
async function nextStep() {
|
|
await router.push("/edit-calendar");
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-column align-items-center w-full mb-7">
|
|
<div class="flex align-items-center justify-content-center m-2">
|
|
<h3>
|
|
{{ $t("additionalModules.subTitle") }}
|
|
</h3>
|
|
</div>
|
|
<AdditionalModuleTable />
|
|
<div
|
|
class="flex align-items-center justify-content-end h-4rem m-2 w-full lg:w-10"
|
|
>
|
|
<Button
|
|
:disabled="store.isEmpty()"
|
|
class="col-12 md:col-4 mb-3 align-self-end"
|
|
icon="pi pi-arrow-right"
|
|
:label="$t('additionalModules.nextStep')"
|
|
@click="nextStep()"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|