feat:Optimize console log

This commit is contained in:
pengfeizhou
2021-02-07 16:33:31 +08:00
committed by osborn
parent 8f0486329e
commit a415365159
4 changed files with 29 additions and 12 deletions

View File

@@ -41,6 +41,9 @@ class CounterVM extends ViewModel<CountModel, CounterView> {
}
onBind(s: CountModel, vh: CounterView) {
vh.number.text = `${s.count}`
log("onBind\nseee")
logw("onBind")
loge("onBind")
}
}