blob: cad3fc0076ab48083b356ffe09c7e110d3fb0b26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<template>
<div class="cw-content-overview">
<courseware-content-overview-elements />
<MountingPortal mountTo="#courseware-content-overview-action-widget" name="sidebar-views">
<courseware-content-overview-action-widget />
</MountingPortal>
<MountingPortal mountTo="#courseware-content-overview-filter-widget" name="sidebar-views">
<courseware-content-overview-filter-widget />
</MountingPortal>
</div>
</template>
<script>
import CoursewareContentOverviewElements from './CoursewareContentOverviewElements.vue';
import CoursewareContentOverviewActionWidget from './CoursewareContentOverviewActionWidget.vue';
import CoursewareContentOverviewFilterWidget from './CoursewareContentOverviewFilterWidget.vue';
export default {
components: {
CoursewareContentOverviewElements,
CoursewareContentOverviewActionWidget,
CoursewareContentOverviewFilterWidget
}
}
</script>
|