REST Service for POPCORN - ILIAS
alex
2025-09-17 846df9e0f36145aae237818362dadff78453a7b9
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
<script setup>
 
const props = defineProps({
   kursRoles: {
      type: Array,
      required: true,
      default: [],
   }
})
 
</script>
 
<template>
 
   <table>
      <thead>
         <tr>
            <th>rol_id</th>
            <th>type</th>
            <th>title</th>
            <th>description</th>
         </tr>
      </thead>
      <tbody>
         <tr v-for="item in kursRoles">
            <td>{{ item.rol_id }}</td>
            <td>{{ item.type }}</td>
            <td>{{ item.title }}</td>
            <td>{{ item.description }}</td>
         </tr>
      </tbody>
   </table>
 
</template>
 
<style scoped>
 
</style>