2021-08-21 17:32:36 +00:00
|
|
|
<template>
|
|
|
|
<div class="single-ticket">
|
|
|
|
<h2>Ticket "ding"</h2>
|
|
|
|
<HeaderlessKeyValueTable :data-rows="{Name: 'Bernd', Status: 'Offen', Ablaufdatum: 'gestern'}" />
|
|
|
|
<br>
|
2021-08-21 17:58:03 +00:00
|
|
|
<label for="description">Beschreibung</label>
|
|
|
|
<textarea id="description" v-model.trim.lazy="description" />
|
2021-08-21 17:38:46 +00:00
|
|
|
<br>
|
2021-08-21 17:58:03 +00:00
|
|
|
<button @click="save">
|
|
|
|
Speichern
|
|
|
|
</button>
|
2021-08-21 17:38:46 +00:00
|
|
|
<hr>
|
2021-08-21 17:32:36 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import HeaderlessKeyValueTable from './components/HeaderlessKeyValueTable'
|
|
|
|
export default {
|
|
|
|
name: 'Ticket',
|
|
|
|
components: { HeaderlessKeyValueTable },
|
2021-08-21 17:58:03 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
description: '',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
save() {},
|
|
|
|
},
|
2021-08-21 17:32:36 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
textarea {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|