Update some more vue 2 legacy code
This commit is contained in:
parent
69cffc0177
commit
370afd0b0c
|
|
@ -5,12 +5,14 @@
|
|||
>
|
||||
<page-form-input
|
||||
label="Titel"
|
||||
v-model="localProject.title"
|
||||
:value="localProject.title"
|
||||
@input="localProject.title = $event"
|
||||
/>
|
||||
<page-form-input
|
||||
label="Beschreibung"
|
||||
type="textarea"
|
||||
v-model="localProject.description"
|
||||
:value="localProject.description"
|
||||
@input="localProject.description = $event"
|
||||
/>
|
||||
<template #footer>
|
||||
<button
|
||||
|
|
|
|||
|
|
@ -6,13 +6,15 @@
|
|||
>
|
||||
<page-form-input
|
||||
label="Titel"
|
||||
v-model="localRoom.title"
|
||||
:value="localRoom.title"
|
||||
@input="localRoom.title = $event"
|
||||
/>
|
||||
|
||||
<page-form-input
|
||||
label="Beschreibung"
|
||||
type="textarea"
|
||||
v-model="localRoom.description"
|
||||
:value="localRoom.description"
|
||||
@input="localRoom.description = $event"
|
||||
/>
|
||||
|
||||
<h2 class="room-form__property-heading">Farbe</h2>
|
||||
|
|
|
|||
Loading…
Reference in New Issue