We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
因为源码是这样的,先调用clear方法,再清空值,我觉得是想把清空前的值交给用户
clear() { this.$emit("clear", { value: this.searchVal }) this.searchVal = "" },
Sorry, something went wrong.
既然是清空操作 应该把空值反馈给父组件,而不是把清空之前的值反馈给父组件;源码把 this.searchVal = "" 放到了 this.$emit 后面,searchVal 值得通过了 watch 监听通知父组件的。
感谢反馈,现已修复,请到插件市场更新!
No branches or pull requests
The text was updated successfully, but these errors were encountered: