28 lines
454 B
Vue
28 lines
454 B
Vue
|
|
<template>
|
||
|
|
<div class="step-intro-lesson">
|
||
|
|
<Step4IntroLessonAdmin
|
||
|
|
:course-id="0"
|
||
|
|
@change="$emit('change')"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import Step4IntroLessonAdmin from '@/components/course-edit/Step4IntroLesson.vue';
|
||
|
|
|
||
|
|
defineProps<{
|
||
|
|
schoolCourseId: number;
|
||
|
|
lessonData?: any;
|
||
|
|
}>();
|
||
|
|
|
||
|
|
defineEmits<{
|
||
|
|
change: [];
|
||
|
|
}>();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.step-intro-lesson {
|
||
|
|
/* 继承admin组件样式 */
|
||
|
|
}
|
||
|
|
</style>
|