mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-30 11:08:00 +08:00
fix: calendar change event call twice #82
This commit is contained in:
parent
4a51544bd6
commit
34f162b513
@ -117,15 +117,14 @@ export default {
|
||||
},
|
||||
|
||||
setValue (value, way) {
|
||||
if (!hasProp(this, 'value')) {
|
||||
this.setState({ sValue: value })
|
||||
}
|
||||
if (way === 'select') {
|
||||
this.$emit('select', value)
|
||||
this.$emit('change', value)
|
||||
} else if (way === 'changePanel') {
|
||||
this.onPanelChange(value, this.sMode)
|
||||
}
|
||||
if (!hasProp(this, 'value')) {
|
||||
this.setState({ sValue: value })
|
||||
}
|
||||
},
|
||||
|
||||
setType (type) {
|
||||
|
Loading…
Reference in New Issue
Block a user