This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
bytedo
/
wcui
Archived
1
0
Fork 0

修复number组件

old
宇天 2020-07-13 20:08:58 +08:00
parent a1af31826e
commit f1298d1950
1 changed files with 1 additions and 0 deletions

View File

@ -271,6 +271,7 @@ export default class Number {
if (n !== value) { if (n !== value) {
this.props.value = n this.props.value = n
this.__INPUT__.value = n this.__INPUT__.value = n
this.dispatchEvent(new CustomEvent('input'))
} }
} }