1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
| <script setup>
|
| import {iliasBase} from "@/lib/api"
| import LinkExtern from "@/components/LinkExtern.vue"
|
| const props = defineProps({
| kursItems: {
| type: Array,
| default: [],
| required: true,
| }
| })
|
| </script>
|
| <template>
|
| <table>
| <thead>
| <tr>
| <th>parent_id</th>
| <th>ref_id</th>
| <th>obj_id</th>
| <th>title</th>
| <th>type</th>
| </tr>
| </thead>
| <tbody>
| <!-- TODO verlinken auf Ziel in ILAS | goto.php?target=crs_ID -->
| <tr v-for="item in kursItems">
| <td>{{ item.parent_id }}</td>
| <td>
| <a :href="`${iliasBase}/goto.php?target=${item.type}_${item.ref_id}`" target="_blank">
| {{ item.ref_id }}
| <LinkExtern />
| </a>
| </td>
| <td>{{ item.obj_id }}</td>
| <td>{{ item.title }}</td>
| <td>{{ item.type }}</td>
| </tr>
| </tbody>
| </table>
|
| </template>
|
| <style scoped>
|
| </style>
|
|