| 1 |
<cx-vui-component-wrapper |
| 2 |
:elementId="currentId" |
| 3 |
:label="label" |
| 4 |
:description="description" |
| 5 |
:wrapper-css="wrapperCss" |
| 6 |
:preventWrap="preventWrap" |
| 7 |
v-if="isVisible()" |
| 8 |
> |
| 9 |
<textarea |
| 10 |
:id="currentId" |
| 11 |
:class="controlClasses" |
| 12 |
:placeholder="placeholder" |
| 13 |
:disabled="disabled" |
| 14 |
:rows="rows" |
| 15 |
:readonly="readonly" |
| 16 |
:name="name" |
| 17 |
:value="currentValue" |
| 18 |
@keyup.enter="handleEnter" |
| 19 |
@keyup="handleKeyup" |
| 20 |
@keypress="handleKeypress" |
| 21 |
@keydown="handleKeydown" |
| 22 |
@focus="handleFocus" |
| 23 |
@blur="handleBlur" |
| 24 |
@input="handleInput" |
| 25 |
@change="handleChange" |
| 26 |
></textarea> |
| 27 |
<slot></slot> |
| 28 |
</cx-vui-component-wrapper> |
| 29 |
|