rex 66679ef6a1
[new feature] Search: update style & add new prop label shape & add new slot label
+ update style
+ add new prop label & shape
+ add new slot label
2019-03-12 17:34:27 +08:00

35 lines
770 B
Plaintext

<demo-block title="基本用法">
<van-search
value="{{ value }}"
placeholder="请输入搜索关键词"
bind:change="onChange"
bind:search="onSearch"
/>
</demo-block>
<demo-block title="监听对应事件">
<van-search
value="{{ value }}"
show-action
placeholder="请输入搜索关键词"
bind:change="onChange"
bind:search="onSearch"
bind:cancel="onCancel"
bind:clear="onClear"
/>
</demo-block>
<demo-block title="高级用法">
<van-search
value="{{ value }}"
placeholder="请输入搜索关键词"
use-action-slot
bind:change="onChange"
bind:search="onSearch"
label="地址"
shape="round"
>
<view slot="action" bind:tap="onSearch">搜索</view>
</van-search>
</demo-block>