blob: 97c230bc3df135150860b7e7c356cdc08d8e52f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<template>
<studip-dialog
:title="$gettext('Feedback zur Aufgabe geben')"
:confirmText="$gettext('Speichern')"
confirmClass="accept"
:closeText="$gettext('Schließen')"
closeClass="cancel"
height="420"
@close="$emit('close')"
@confirm="create"
>
<template #dialogContent>
<form class="default" @submit.prevent="">
<label>
{{ $gettext('Feedback') }}
<textarea v-model="localContent" />
</label>
</form>
</template>
</studip-dialog>
</template>
<script>
export default {
props: ['content'],
emits: ['close', 'create'],
data: () => ({
localContent: '',
}),
methods: {
resetLocalVars() {
this.localContent = this.content;
},
create() {
this.$emit('create', { content: this.localContent });
},
},
mounted() {
this.resetLocalVars();
},
watch: {
content(newValue) {
if (newValue !== this.localContent) {
this.resetLocalVars();
}
},
},
};
</script>
|