ant-design-vue/components/input/demo/search-input.md

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>