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
问题描述 表格之类的属性里面的excel编辑,按任意键都会跳到第一个单元格中,导致不能编辑。
The text was updated successfully, but these errors were encountered:
原因:编辑单元格的时候,emit('change') 或 emit('input'),会改变 props.value,这样 watch.value 会执行,导致重新刷新表格(会导致跳转到第一个单元格)
watch: { value () { this.refreshSheet({ rows: this.innerItems }) } },
Sorry, something went wrong.
c2233d2
No branches or pull requests
问题描述
表格之类的属性里面的excel编辑,按任意键都会跳到第一个单元格中,导致不能编辑。
The text was updated successfully, but these errors were encountered: