ant-design-vue/components/input/Search.jsx
2018-03-19 21:23:38 +08:00

54 lines
1005 B
JavaScript

import Input from './Input'
import Icon from '../icon'
import inputProps from './inputProps'
export default {
name: 'InputSearch',
props: {
...inputProps,
prefixCls: {
default: 'ant-input-search',
type: String,
},
inputPrefixCls: {
default: 'ant-input',
type: String,
},
},
computed: {
},
methods: {
onSearch (e) {
this.$emit('search', this.$refs.input.stateValue)
this.$refs.input.focus()
},
},
render () {
const { inputPrefixCls, prefixCls, ...others } = this.$props
const inputProps = {
props: {
...others,
prefixCls: inputPrefixCls,
},
attrs: this.$attrs,
}
return (
<Input
{...inputProps}
onPressEnter={this.onSearch}
class={prefixCls}
ref='input'
>
<Icon
slot='suffix'
class={`${prefixCls}-icon`}
onClick={this.onSearch}
type='search'
/>
</Input>
)
},
}