vue/src/pages/Kurse.vue
@@ -5,9 +5,12 @@ import Pagination from "../components/Pagination.vue" import {getKurse, routerBase} from "@/lib/api" document.title = 'Kurse | globus-ilias-rest' const route = useRoute() const kurse = ref([]) const error = ref(null) onMounted(init) @@ -46,6 +49,7 @@ <th>title</th> <th>description</th> <th>type</th> <th>offline</th> </tr> </thead> <tbody> @@ -59,6 +63,7 @@ <td>{{ kurs.title }}</td> <td>{{ kurs.description }}</td> <td>{{ kurs.type }}</td> <td>{{ kurs.offline }}</td> </tr> </tbody> </table>