blob: 406045eb4d54281edb16d2d9bba6a0efc0d7350e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<template>
<div class="cw-tools cw-tools-contents">
<courseware-tree v-if="structuralElements.length" />
</div>
</template>
<script>
import CoursewareTree from './CoursewareTree.vue';
import { mapGetters } from 'vuex';
export default {
name: 'courseware-tools-contents',
components: {
CoursewareTree,
},
computed: {
...mapGetters({
structuralElements: 'courseware-structural-elements/all',
}),
},
};
</script>
|