Update src/client/app/common/views/components/ui/textarea.vue

This commit is contained in:
syuilo 2018-10-26 14:38:03 +09:00
parent a12356b24b
commit 65cb253be4
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -3,15 +3,15 @@
<div class="input">
<span class="label" ref="label"><slot></slot></span>
<textarea ref="input"
:value="value"
:required="required"
:readonly="readonly"
:pattern="pattern"
:autocomplete="autocomplete"
@input="$emit('input', $event.target.value)"
@focus="focused = true"
@blur="focused = false">
</textarea>
:value="value"
:required="required"
:readonly="readonly"
:pattern="pattern"
:autocomplete="autocomplete"
@input="$emit('input', $event.target.value)"
@focus="focused = true"
@blur="focused = false"
></textarea>
</div>
<div class="text"><slot name="text"></slot></div>
</div>