16 lines
466 B
Vue
16 lines
466 B
Vue
<script setup lang="ts">
|
|
import LearningContentSimpleLayout from "@/pages/learningPath/learningContentPage/layouts/LearningContentSimpleLayout.vue";
|
|
import type { LearningContentInterface } from "@/types";
|
|
|
|
const props = defineProps<{
|
|
content: LearningContentInterface;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<LearningContentSimpleLayout
|
|
:title="props.content.title"
|
|
:learning-content-type="props.content.content_type"
|
|
></LearningContentSimpleLayout>
|
|
</template>
|