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/glossary/GlossaryExport.vue

30 lines
591 B

<template>
<div class="export-glossary">
<div class="mb-4">
<button class="btn btn--secondary" @click="goBack">Back</button>
</div>
<h2>Export Glossary</h2>
<GlossaryExportForm/>
</div>
</template>
<script setup>
import GlossaryExportForm from '../../components/glossary/GlossaryExportForm.vue'
import {useRoute, useRouter} from "vue-router"
const router = useRouter()
const route = useRoute()
const goBack = () => {
router.push({
name: "GlossaryList",
query: route.query,
})
}
</script>
<style scoped>
.export-glossary {
margin: 20px;
}
</style>