解决elementUI的穿梭框clearQuery方法无效
author: idongchen
modify: 2018-12-6
原因很简单,2.2.0版本才有此清空功能;
如果在生产中的项目中不好升级到2.2.0+版本有以下解决方法。
解决方法(对于2.2.0一下版本的):
离开transfer时:
// 清空左边搜索
this.$refs.yourTransfer.$children["0"].$children["0"]._data.currentValue = '';
// 清空右边搜索
this.$refs.yourTransfer.$children["3"].$children["0"]._data.currentValue = '';
当然最好还是升级新版本的elementUI,官方对2.0一下版本已不在支持
欢迎关注更多内容:mob前端组
网友评论