blob: 71f6adca9eb78a836b76b6ef5ee7a5d8eb5462f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<template>
<section class="cw-block-export-options">
<header><translate>Export Optionen</translate></header>
<div class="cw-block-features-content">
<button class="button" @click="$emit('close')"><translate>Schließen</translate></button>
</div>
</section>
</template>
<script>
export default {
name: 'courseware-block-export-options',
components: {},
props: {
block: Object,
},
};
</script>
|