1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00
2017-03-01 15:40:08 +08:00

461 B

Search 组件

基础用法

<zan-search 
    placeholder="商品名称"
    @search="goSearch"
>
</zan-search>
export default {
  methods: {
    goSearch(value) {
      alert(value)
    }
  }
};

API

参数 说明 类型 默认值 必须
placeholder input的placeholder文案 string