123456789101112131415161718192021222324252627282930313233 |
- <!--components/w-field/index.wxml-->
- <van-field
- class="w-field {{ labelAlign }}"
- type="{{ type }}"
- model:value="{{ innerValue }}"
- input-align="{{ inputAlign }}"
- placeholder="{{ placeholder }}"
- placeholder-style="{{ placeholderStyle }}"
- label="{{ label }}"
- is-link="{{ isLink }}"
- border="{{ border }}"
- disabled="{{ disabled }}"
- readonly="{{ readonly }}"
- clearable="{{ clearable }}"
- clickable="{{ clickable }}"
- maxlength="{{ maxlength }}"
- autosize="{{ autosize }}"
- show-word-limit="{{ showWordLimit }}"
- center="{{ center }}"
- title-width="{{ titleWidth }}"
- bind:input="onInput"
- bind:change="onChange"
- bind:blur="onBlur"
- >
- <!-- <slot name="icon" slot="left-icon" /> -->
- <label for="{{ name }}" wx:if="{{ label }}" name="title" slot="title">
- {{ label }}
- </label>
- <slot name="input" slot="input" />
- <slot name="right-icon" slot="right-icon" />
- <slot name="icon" slot="icon" />
- <slot name="button" slot="button" />
- </van-field>
|