fix: input box cursor error #2207
parent
90131e93d9
commit
352eb84eff
|
@ -109,7 +109,9 @@ export default {
|
|||
callback && callback();
|
||||
});
|
||||
} else {
|
||||
this.$forceUpdate();
|
||||
// 不在严格受控
|
||||
// https://github.com/vueComponent/ant-design-vue/issues/2207,modal 是 新 new 实例,更新队列和当前不在同一个更新队列中
|
||||
// this.$forceUpdate();
|
||||
}
|
||||
},
|
||||
onChange(e) {
|
||||
|
|
|
@ -52,7 +52,9 @@ export default {
|
|||
callback && callback();
|
||||
});
|
||||
} else {
|
||||
this.$forceUpdate();
|
||||
// 不在严格受控
|
||||
// https://github.com/vueComponent/ant-design-vue/issues/2207,modal 是 新 new 实例,更新队列和当前不在同一个更新队列中
|
||||
// this.$forceUpdate();
|
||||
}
|
||||
},
|
||||
handleKeyDown(e) {
|
||||
|
|
|
@ -79,6 +79,7 @@ module.exports = {
|
|||
resolve: {
|
||||
alias: {
|
||||
'ant-design-vue': path.join(__dirname, './components'),
|
||||
vue$: 'vue/dist/vue.esm.js',
|
||||
},
|
||||
extensions: ['.js', '.jsx', '.vue'],
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue