input.php
| 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 |