Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/assets/vue/views/assignments/AssignmentsList.vue

14 lines
367 B

<template>
<TeacherAssignmentList
v-if="isUserTeacher"
/>
</template>
<script setup>
import TeacherAssignmentList from "../../components/assignments/TeacherAssignmentList.vue"
import { computed } from "vue"
import { useStore } from "vuex"
const store = useStore();
const isUserTeacher = computed(() => store.getters["security/isCurrentTeacher"]);
</script>