feat:update assets and set ip for input

This commit is contained in:
pengfeizhou
2021-02-25 12:43:22 +08:00
committed by osborn
parent d834f03835
commit b60fffd055
6 changed files with 17 additions and 8 deletions

View File

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