fix: InputSearch return wrong value #53
parent
49101c7066
commit
0c1b74504f
|
@ -2,6 +2,11 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 0.6.4
|
||||||
|
|
||||||
|
`2018-06-28`
|
||||||
|
- 🐞 Fix `InputSearch` `v-model` return wrong value[#53](https://github.com/vueComponent/ant-design/issues/53
|
||||||
|
|
||||||
## 0.6.3
|
## 0.6.3
|
||||||
|
|
||||||
`2018-06-26`
|
`2018-06-26`
|
||||||
|
|
|
@ -2,6 +2,11 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 0.6.4
|
||||||
|
|
||||||
|
`2018-06-28`
|
||||||
|
- 🐞 修复`InputSearch`的`v-model`返回值错误问题[#53](https://github.com/vueComponent/ant-design/issues/53)
|
||||||
|
|
||||||
## 0.6.3
|
## 0.6.3
|
||||||
|
|
||||||
`2018-06-26`
|
`2018-06-26`
|
||||||
|
|
|
@ -22,7 +22,9 @@ export default {
|
||||||
},
|
},
|
||||||
enterButton: PropTypes.oneOfType([PropTypes.bool, PropTypes.string, PropTypes.object]),
|
enterButton: PropTypes.oneOfType([PropTypes.bool, PropTypes.string, PropTypes.object]),
|
||||||
},
|
},
|
||||||
computed: {
|
model: {
|
||||||
|
prop: 'value',
|
||||||
|
event: 'change.value',
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onSearch (e) {
|
onSearch (e) {
|
||||||
|
|
Loading…
Reference in New Issue