mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-16 22:36:43 +08:00
33 lines
465 B
Vue
33 lines
465 B
Vue
<template>
|
|
<section class="app-main xuc-content">
|
|
<div class="main-body">
|
|
<CourseManage />
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import CourseManage from './CourseManage.vue';
|
|
|
|
export default {
|
|
name: 'RemoteCourseManage',
|
|
components: { CourseManage },
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.app-main {
|
|
// padding-top: 20px;
|
|
}
|
|
|
|
.xuc-content {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.main-body {
|
|
background-color: #fff;
|
|
padding: 30px 20px;
|
|
}
|
|
</style>
|
|
|