PluginProbe
JetFormBuilder — Dynamic Blocks Form Builder / trunk
JetFormBuilder — Dynamic Blocks Form Builder vtrunk
3.6.5.2 3.6.5.1 3.6.5 3.6.4.2 3.6.4.1 3.6.4 3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 All 130 releases
jetformbuilder / modules / framework / vue-ui / components / textarea.php
textarea.php
29 lines 612 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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