diff --git a/packages/color-picker/src/main.vue b/packages/color-picker/src/main.vue index e210849bc..f35b5e15a 100644 --- a/packages/color-picker/src/main.vue +++ b/packages/color-picker/src/main.vue @@ -74,10 +74,12 @@ methods: { confirmValue(value) { this.$emit('input', this.color.value); + this.$emit('change', this.color.value); this.showPicker = false; }, clearValue() { this.$emit('input', null); + this.$emit('change', null); this.showPanelColor = false; this.showPicker = false; this.resetColor();