Bücher eintragen: Ablaufreihenfolge von Klicks/Einträgen
This commit is contained in:
parent
8a817f8be4
commit
8691dc7c32
@ -5,6 +5,7 @@
|
|||||||
md="12"
|
md="12"
|
||||||
>
|
>
|
||||||
<VCard
|
<VCard
|
||||||
|
v-show="!showEnterBooks"
|
||||||
class="mb-6"
|
class="mb-6"
|
||||||
title="Bücher eintragen"
|
title="Bücher eintragen"
|
||||||
subtitle="Du kannst ein Buch bei uns nicht finden? Hier kannst du es eintragen!"
|
subtitle="Du kannst ein Buch bei uns nicht finden? Hier kannst du es eintragen!"
|
||||||
@ -60,7 +61,7 @@
|
|||||||
<VBtn
|
<VBtn
|
||||||
variant="text"
|
variant="text"
|
||||||
color="error"
|
color="error"
|
||||||
@click="displayBook"
|
@click="displayedEnterBooks"
|
||||||
>
|
>
|
||||||
Wurde dein Buch nicht gefunden? Dann trage es jetzt ein!
|
Wurde dein Buch nicht gefunden? Dann trage es jetzt ein!
|
||||||
</VBtn>
|
</VBtn>
|
||||||
@ -73,8 +74,10 @@
|
|||||||
|
|
||||||
|
|
||||||
<VCard
|
<VCard
|
||||||
|
v-show="showEnterBooks"
|
||||||
class="mb-6"
|
class="mb-6"
|
||||||
title="Buch eintragen"
|
title="Trage dein Buch jetzt ein:"
|
||||||
|
subtitle="Alle mit * gekennzeichneten Felder sind Pflichtfelder!"
|
||||||
>
|
>
|
||||||
<VCardText>
|
<VCardText>
|
||||||
<VRow>
|
<VRow>
|
||||||
@ -242,6 +245,12 @@ import AppTextField from "@core/components/app-form-elements/AppTextField.vue"
|
|||||||
import DropZone from "@core/components/DropZone.vue";
|
import DropZone from "@core/components/DropZone.vue";
|
||||||
import AppCombobox from "@core/components/app-form-elements/AppCombobox.vue";
|
import AppCombobox from "@core/components/app-form-elements/AppCombobox.vue";
|
||||||
|
|
||||||
|
const showEnterBooks = ref(false)
|
||||||
|
|
||||||
|
function displayedEnterBooks() {
|
||||||
|
showEnterBooks.value = true
|
||||||
|
}
|
||||||
|
|
||||||
const inputValueTitle = ref('')
|
const inputValueTitle = ref('')
|
||||||
const inputValueISBN = ref('')
|
const inputValueISBN = ref('')
|
||||||
const showButton = ref(false)
|
const showButton = ref(false)
|
||||||
@ -267,7 +276,6 @@ function displayBook() {
|
|||||||
displayedBooks.value = true
|
displayedBooks.value = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//////////////////
|
//////////////////
|
||||||
|
|
||||||
const seitenanzahl = ref(null)
|
const seitenanzahl = ref(null)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user