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

578 B

Search 组件

基础用法

:::demo 基础用法

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

:::

API

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