mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-30 19:18:07 +08:00
fix: typography not trigger onEnd in blur #4227
This commit is contained in:
parent
a1a8b799d0
commit
700d04badc
@ -5,6 +5,7 @@ import EnterOutlined from '@ant-design/icons-vue/EnterOutlined';
|
||||
import { defineComponent, ref, reactive, watch, onMounted } from 'vue';
|
||||
|
||||
const Editable = defineComponent({
|
||||
name: 'Editable',
|
||||
props: {
|
||||
prefixCls: PropTypes.string,
|
||||
value: PropTypes.string,
|
||||
@ -95,6 +96,7 @@ const Editable = defineComponent({
|
||||
|
||||
function onBlur() {
|
||||
confirmChange();
|
||||
emit('end');
|
||||
}
|
||||
|
||||
function confirmChange() {
|
||||
|
Loading…
Reference in New Issue
Block a user