blob: aeb66a5c6c284dd440e643431a6eeb7deb2cb9aa (
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>{{ $gettext('Export Optionen') }}</header>
<div class="cw-block-features-content">
<button class="button" @click="$emit('close')">{{ $gettext('Schließen') }}</button>
</div>
</section>
</template>
<script>
export default {
name: 'courseware-block-export-options',
emits: ['close'],
props: {
block: Object,
},
};
</script>
|