16 lines
409 B
Vue
16 lines
409 B
Vue
<script setup lang="ts">
|
|
import AssignmentView from "@/pages/learningPath/learningContentPage/assignment/AssignmentView.vue";
|
|
import type { LearningContentAssignment } from "@/types";
|
|
|
|
const props = defineProps<{
|
|
content: LearningContentAssignment;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<AssignmentView
|
|
:assignment-id="props.content.content_assignment_id"
|
|
:learning-content="props.content"
|
|
/>
|
|
</template>
|