|
@@ -1,4 +1,5 @@
|
|
|
<script setup>
|
|
|
+import CourseMng from '../../components/admin/CourseMng.vue';
|
|
|
import { computed, onMounted, onUnmounted, watch, ref } from "vue";
|
|
|
import { useRouter } from 'vue-router';
|
|
|
const router = useRouter();
|
|
@@ -7,7 +8,8 @@ const router = useRouter();
|
|
|
|
|
|
<template>
|
|
|
<div class="ManageStudy">
|
|
|
- 学习管理
|
|
|
+ <!-- 学习管理 -->
|
|
|
+ <CourseMng></CourseMng>
|
|
|
</div>
|
|
|
</template>
|
|
|
|