Files
learning-system-portal/src/views/course/CourseManageRemote.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>