fix: input box cursor error #2207

pull/2222/head
tanjinzhou 2020-05-08 14:03:07 +08:00
parent 90131e93d9
commit 352eb84eff
3 changed files with 7 additions and 2 deletions

View File

@ -109,7 +109,9 @@ export default {
callback && callback();
});
} else {
this.$forceUpdate();
//
// https://github.com/vueComponent/ant-design-vue/issues/2207modal new
// this.$forceUpdate();
}
},
onChange(e) {

View File

@ -52,7 +52,9 @@ export default {
callback && callback();
});
} else {
this.$forceUpdate();
//
// https://github.com/vueComponent/ant-design-vue/issues/2207modal new
// this.$forceUpdate();
}
},
handleKeyDown(e) {

View File

@ -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'],
},