PluginProbe
JetFormBuilder — Dynamic Blocks Form Builder / 2.1.3
JetFormBuilder — Dynamic Blocks Form Builder v2.1.3
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 / framework / vue-ui / components / input.php
input.php
34 lines 722 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 <input
10 :id="currentId"
11 :type="type"
12 :class="controlClasses"
13 :placeholder="placeholder"
14 :disabled="disabled"
15 :maxlength="maxlength"
16 :readonly="readonly"
17 :name="name"
18 :value="currentValue"
19 :autofocus="autofocus"
20 :min="min"
21 :max="max"
22 :step="step"
23 @keyup.enter="handleEnter"
24 @keyup="handleKeyup"
25 @keypress="handleKeypress"
26 @keydown="handleKeydown"
27 @focus="handleFocus"
28 @blur="handleBlur"
29 @input="handleInput"
30 @change="handleChange"
31 >
32 <slot></slot>
33 </cx-vui-component-wrapper>
34