mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2025-07-16 09:38:51 +02:00
26 lines
467 B
Vue
26 lines
467 B
Vue
<script lang="ts" setup>
|
|
import { inject } from "vue";
|
|
import { Module } from "../model/module.ts";
|
|
|
|
const dialogRef = inject("dialogRef") as any;
|
|
const module = dialogRef.value.data.module as Module;
|
|
|
|
console.debug(module);
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<h2>{{ module.name }}</h2>
|
|
<table>
|
|
<tr>
|
|
<td>Course:</td>
|
|
<td>{{ module.course }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Termine:</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</template>
|