mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +08:00
429 B
429 B
#### 搜索框
带有搜索按钮的输入框。
#### Search box
Example of creating a search box by grouping a standard input with a search button.
<template>
<a-input-search
placeholder="input search text"
style="width: 200px"
@search="onSearch"
/>
</template>
<script>
export default {
methods: {
onSearch (value) {
console.log(value)
},
},
}
</script>