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

@@ -6,21 +6,21 @@
{
"label": "Doric Build",
"type": "shell",
"command": "doric build",
"command": "npm run build",
"group": "build",
"problemMatcher": []
},
{
"label": "Doric Clean",
"type": "shell",
"command": "doric clean",
"command": "npm run clean",
"group": "build",
"problemMatcher": []
},
{
"label": "Doric Dev",
"type": "shell",
"command": "doric dev",
"command": "npm run dev",
"group": "build",
"problemMatcher": []
}

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}`);
}
}