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
问题:当在 columns 里设置某列可编辑时,设置 editComponent:”NInputNumber“ 监听无效 解决: 应该是 Naive-UI 对于 NInputNumber 组件是无 on-input 事件, 可在 Table 组件的 componentMap 文件里改动枚举 EventEnum : NInputNumber = 'on-input' ==> NInputNumber = 'on-update:value'
columns
editComponent:”NInputNumber“
Naive-UI
NInputNumber
EventEnum
NInputNumber = 'on-input'
NInputNumber = 'on-update:value'
The text was updated successfully, but these errors were encountered:
nice,非常细心,被你发现了一个bug
Sorry, something went wrong.
No branches or pull requests
问题:当在
columns
里设置某列可编辑时,设置editComponent:”NInputNumber“
监听无效解决:
应该是
Naive-UI
对于NInputNumber
组件是无 on-input 事件,可在 Table 组件的 componentMap 文件里改动枚举
EventEnum
:NInputNumber = 'on-input'
==>NInputNumber = 'on-update:value'
The text was updated successfully, but these errors were encountered: