# 搜索组件

## 介绍

针对 vant search 组件的简单封装，主要修改了样式以符合设计规范

## 引入

```js
import { Vue } from "vue";
import { Search } from "@bingoit/mobile-ui";

Vue.use(Search);
```

## 代码演示

### 基础用法

```html
<bgo-search
    v-model="keyword"
    placeholder="请输入关键字"
    @search="onSearch"
/>
```

## API

### Props

参考 [Vant Search 组件Props列表](https://vant-contrib.gitee.io/vant/#/zh-CN/search#props)

### Events

参考 [Vant Search 组件事件列表](https://vant-contrib.gitee.io/vant/#/zh-CN/search#events)

